diff --git a/.github/workflows/update-api-docs.yml b/.github/workflows/update-api-docs.yml
new file mode 100644
index 00000000..ebc32410
--- /dev/null
+++ b/.github/workflows/update-api-docs.yml
@@ -0,0 +1,57 @@
+name: update-api-docs
+
+# Regenerates content/api when a new @nativescript/core version is released.
+#
+# Triggered by a repository_dispatch sent from NativeScript/NativeScript when
+# a core release tag (e.g. "9.0.21-core") is pushed — see the
+# notify_docs_core_release.yml workflow in that repo. Can also be run
+# manually for any published version.
+
+on:
+ repository_dispatch:
+ types: [core-release]
+ workflow_dispatch:
+ inputs:
+ version:
+ description: '@nativescript/core version to generate docs for'
+ required: false
+ default: 'latest'
+
+# Needed by peter-evans/create-pull-request (push branch + open PR)
+permissions:
+ contents: write
+ pull-requests: write
+
+jobs:
+ regenerate:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Setup Node
+ uses: actions/setup-node@v4
+ with:
+ node-version: 22.14.0
+ - name: Resolve target version
+ run: |
+ VERSION="${{ github.event.client_payload.version || inputs.version || 'latest' }}"
+ echo "CORE_VERSION=$VERSION" >> "$GITHUB_ENV"
+ - name: Install dependencies
+ run: yarn
+ - name: Update @nativescript/core
+ run: yarn add -D @nativescript/core@$CORE_VERSION
+ - name: Regenerate API reference
+ run: yarn generate:api-docs
+ env:
+ # Used for the GitHub tree lookup that validates "Defined in" source links
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Open PR if the API changed
+ uses: peter-evans/create-pull-request@v6
+ with:
+ commit-message: 'chore(api): regenerate API reference for @nativescript/core@${{ env.CORE_VERSION }}'
+ title: 'chore(api): regenerate API reference (@nativescript/core@${{ env.CORE_VERSION }})'
+ body: |
+ Automated regeneration of `content/api` for `@nativescript/core@${{ env.CORE_VERSION }}`.
+
+ Generated with `yarn generate:api-docs`.
+ branch: chore/update-api-docs
+ delete-branch: true
diff --git a/.gitignore b/.gitignore
index 9ce2f1cc..ba12d5e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,8 @@ node_modules
# content/api/**/*
.vitepress/dist
.vitepress/cache
+tmp/
+.wrangler/
explore/
diff --git a/.prettierignore b/.prettierignore
new file mode 100644
index 00000000..a45a2e8d
--- /dev/null
+++ b/.prettierignore
@@ -0,0 +1,3 @@
+# generated API reference (yarn generate:api-docs)
+content/api/
+content/public/api-index.json
diff --git a/.textlintignore b/.textlintignore
new file mode 100644
index 00000000..26fa246d
--- /dev/null
+++ b/.textlintignore
@@ -0,0 +1,2 @@
+# generated API reference (yarn generate:api-docs)
+content/api/**
diff --git a/.vitepress/config.mts b/.vitepress/config.mts
index 0a3833ee..7b143dd2 100644
--- a/.vitepress/config.mts
+++ b/.vitepress/config.mts
@@ -1,5 +1,6 @@
import { defineConfig } from 'vitepress'
-import apiSidebar from '../content/api/sidebar.json'
+import llmstxt from 'vitepress-plugin-llms'
+import typedocSidebar from '../content/api/typedoc-sidebar.json'
import mainSidebar from '../content/sidebar'
import uiSidebar from '../content/ui/sidebar'
import pluginsSidebar from '../content/plugins/sidebar'
@@ -12,6 +13,14 @@ import { SiteMap } from './genSitemap.mjs'
const isDev = process.env.NODE_ENV !== 'production'
const branch = process.env.CF_PAGES_BRANCH ?? 'main'
+const apiSidebar = [
+ {
+ text: 'API Reference',
+ link: '/api/',
+ },
+ ...typedocSidebar,
+]
+
const sitemap = new SiteMap()
const baseUrl = 'https://docs.nativescript.org'
function toUrl(path: string) {
@@ -45,6 +54,16 @@ export default defineConfig({
ssr: {
noExternal: ['@nativescript/vitepress-theme'],
},
+ plugins: [
+ llmstxt({
+ domain: 'https://docs.nativescript.org',
+ title: 'NativeScript',
+ description:
+ 'NativeScript empowers you to access native platform APIs from JavaScript directly. Develop iOS, Android and visionOS apps with TypeScript, Angular, Vue, React, Svelte or Solid.',
+ // also emit /index.md for the home page (default skips it)
+ excludeIndexPage: false,
+ }),
+ ],
},
themeConfig: {
editLink: {
@@ -72,7 +91,21 @@ export default defineConfig({
},
markdown: {
headers: true,
- theme: "github-dark"
+ theme: "github-dark",
+ config(md) {
+ // Inject the "Copy page" button (markdown/LLM/MCP actions) at the top
+ // of every page body, right below the theme-rendered title.
+ md.core.ruler.push('copy-page-button', (state) => {
+ // only inject into full page renders (not inline snippets like
+ // custom container titles), and only for actual doc pages
+ if (state.inlineMode) return
+ if (!state.env?.relativePath) return
+ if (state.env?.frontmatter?.copyPage === false) return
+ const token = new state.Token('html_block', '', 0)
+ token.content = 'layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#layoutchangedevent"
- }
- ]
- },
- "34331": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#showingmodallyevent"
- }
- ]
- },
- "34332": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#shownmodallyevent"
- }
- ]
- },
- "34333": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityblurevent"
- }
- ]
- },
- "34334": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityfocusevent"
- }
- ]
- },
- "34335": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "34336": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/AbsoluteLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "34345": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/AbsoluteLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34353": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/AbsoluteLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "34359": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/AbsoluteLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "34363": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "34364": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#loadedevent"
- }
- ]
- },
- "34365": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#unloadedevent"
- }
- ]
- },
- "34366": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#createdevent"
- }
- ]
- },
- "34367": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#disposenativeviewevent"
- }
- ]
- },
- "34368": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#propertychangeevent"
- }
- ]
- },
- "34369": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34377": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34385": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34393": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34401": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34409": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/AbsoluteLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new AbsoluteLayout(): AbsoluteLayout",
- "url": "/api/class/AbsoluteLayout#constructor-new-absolutelayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "AbsoluteLayout"
- }
- ]
- },
- "34411": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/AbsoluteLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "34413": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/AbsoluteLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "34416": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/AbsoluteLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "34419": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/AbsoluteLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34422": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/AbsoluteLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34426": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/AbsoluteLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34429": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/AbsoluteLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34431": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/AbsoluteLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34434": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/AbsoluteLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34437": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/AbsoluteLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34444": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#padding"
- }
- ]
- },
- "34445": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#paddingbottom"
- }
- ]
- },
- "34446": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#paddingleft"
- }
- ]
- },
- "34447": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#paddingright"
- }
- ]
- },
- "34448": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#paddingtop"
- }
- ]
- },
- "34449": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#cliptobounds"
- }
- ]
- },
- "34450": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#ispassthroughparentenabled"
- }
- ]
- },
- "34462": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iosoverflowsafearea"
- }
- ]
- },
- "34463": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#android"
- }
- ]
- },
- "34464": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#ios"
- }
- ]
- },
- "34465": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#bindingcontext"
- }
- ]
- },
- "34466": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#bordercolor"
- }
- ]
- },
- "34467": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#bordertopcolor"
- }
- ]
- },
- "34468": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderrightcolor"
- }
- ]
- },
- "34469": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderbottomcolor"
- }
- ]
- },
- "34470": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderleftcolor"
- }
- ]
- },
- "34471": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderwidth"
- }
- ]
- },
- "34472": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#bordertopwidth"
- }
- ]
- },
- "34473": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderrightwidth"
- }
- ]
- },
- "34474": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderbottomwidth"
- }
- ]
- },
- "34475": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderleftwidth"
- }
- ]
- },
- "34476": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderradius"
- }
- ]
- },
- "34477": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#bordertopleftradius"
- }
- ]
- },
- "34478": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#bordertoprightradius"
- }
- ]
- },
- "34479": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderbottomrightradius"
- }
- ]
- },
- "34480": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#borderbottomleftradius"
- }
- ]
- },
- "34481": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#color"
- }
- ]
- },
- "34482": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessible"
- }
- ]
- },
- "34483": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityhidden"
- }
- ]
- },
- "34484": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityidentifier"
- }
- ]
- },
- "34485": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityrole"
- }
- ]
- },
- "34486": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilitystate"
- }
- ]
- },
- "34487": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilitylabel"
- }
- ]
- },
- "34488": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityvalue"
- }
- ]
- },
- "34489": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilityhint"
- }
- ]
- },
- "34490": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#accessibilityliveregion"
- }
- ]
- },
- "34491": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilitylanguage"
- }
- ]
- },
- "34492": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#accessibilitymediasession"
- }
- ]
- },
- "34493": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "34494": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "34495": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "34496": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "34497": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#automationtext"
- }
- ]
- },
- "34498": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#androidelevation"
- }
- ]
- },
- "34499": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "34500": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#background"
- }
- ]
- },
- "34501": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#backgroundcolor"
- }
- ]
- },
- "34502": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#backgroundimage"
- }
- ]
- },
- "34503": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#boxshadow"
- }
- ]
- },
- "34504": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#minwidth"
- }
- ]
- },
- "34505": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#minheight"
- }
- ]
- },
- "34506": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#width"
- }
- ]
- },
- "34507": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#height"
- }
- ]
- },
- "34508": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#margin"
- }
- ]
- },
- "34509": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#marginleft"
- }
- ]
- },
- "34510": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#margintop"
- }
- ]
- },
- "34511": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#marginright"
- }
- ]
- },
- "34512": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#marginbottom"
- }
- ]
- },
- "34513": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#horizontalalignment"
- }
- ]
- },
- "34514": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#verticalalignment"
- }
- ]
- },
- "34515": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#visibility"
- }
- ]
- },
- "34516": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#opacity"
- }
- ]
- },
- "34517": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#rotate"
- }
- ]
- },
- "34518": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#rotatex"
- }
- ]
- },
- "34519": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#rotatey"
- }
- ]
- },
- "34520": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#perspective"
- }
- ]
- },
- "34521": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#translatex"
- }
- ]
- },
- "34522": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#translatey"
- }
- ]
- },
- "34523": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#scalex"
- }
- ]
- },
- "34524": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#scaley"
- }
- ]
- },
- "34525": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#originx"
- }
- ]
- },
- "34526": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#originy"
- }
- ]
- },
- "34527": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#isenabled"
- }
- ]
- },
- "34528": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#isuserinteractionenabled"
- }
- ]
- },
- "34529": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "34530": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iosignoresafearea"
- }
- ]
- },
- "34531": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#islayoutvalid"
- }
- ]
- },
- "34532": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#csstype"
- }
- ]
- },
- "34533": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#cssclasses"
- }
- ]
- },
- "34534": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#csspseudoclasses"
- }
- ]
- },
- "34535": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/AbsoluteLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34539": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/AbsoluteLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34546": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/AbsoluteLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "34548": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/AbsoluteLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "34550": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/AbsoluteLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "34552": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/AbsoluteLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34556": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/AbsoluteLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34562": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/AbsoluteLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34566": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/AbsoluteLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34572": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/AbsoluteLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34574": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/AbsoluteLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "34577": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/AbsoluteLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "34585": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/AbsoluteLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/AbsoluteLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/AbsoluteLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/AbsoluteLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/AbsoluteLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "34628": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#modal"
- }
- ]
- },
- "34629": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/AbsoluteLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "34632": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/AbsoluteLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "34635": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/AbsoluteLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "34642": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/AbsoluteLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "34644": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/AbsoluteLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "34646": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/AbsoluteLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "34649": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/AbsoluteLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "34651": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/AbsoluteLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34663": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/AbsoluteLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "34665": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/AbsoluteLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34667": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/AbsoluteLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "34669": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/AbsoluteLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34675": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/AbsoluteLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34677": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/AbsoluteLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34679": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/AbsoluteLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34681": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/AbsoluteLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34687": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/AbsoluteLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34690": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/AbsoluteLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34693": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/AbsoluteLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34762": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/AbsoluteLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "34768": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/AbsoluteLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34773": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/AbsoluteLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34775": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/AbsoluteLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34777": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/AbsoluteLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "34780": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/AbsoluteLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "34783": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/AbsoluteLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "34787": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#testid"
- }
- ]
- },
- "34788": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#touchanimation"
- }
- ]
- },
- "34789": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#ignoretouchanimation"
- }
- ]
- },
- "34790": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#touchdelay"
- }
- ]
- },
- "34791": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#closemodalcallback"
- }
- ]
- },
- "34792": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#transitionid"
- }
- ]
- },
- "34793": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#islayoutvalid"
- }
- ]
- },
- "34794": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/AbsoluteLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34796": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/AbsoluteLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34799": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34807": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34815": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34823": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/AbsoluteLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "34826": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/AbsoluteLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34829": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/AbsoluteLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34833": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/AbsoluteLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34839": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/AbsoluteLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34841": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/AbsoluteLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34843": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/AbsoluteLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34845": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/AbsoluteLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34849": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/AbsoluteLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34853": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/AbsoluteLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "34857": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/AbsoluteLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "34861": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/AbsoluteLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34863": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/AbsoluteLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34869": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/AbsoluteLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34871": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/AbsoluteLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34875": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#domnode"
- }
- ]
- },
- "34876": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#recyclenativeview"
- }
- ]
- },
- "34877": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#viewcontroller"
- }
- ]
- },
- "34878": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#nativeviewprotected"
- }
- ]
- },
- "34879": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#parent"
- }
- ]
- },
- "34880": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#iscollapsed"
- }
- ]
- },
- "34881": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#id"
- }
- ]
- },
- "34882": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#classname"
- }
- ]
- },
- "34883": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#sharedtransitiontag"
- }
- ]
- },
- "34884": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#sharedtransitionignore"
- }
- ]
- },
- "34885": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#domid"
- }
- ]
- },
- "34886": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#context"
- }
- ]
- },
- "34887": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "34888": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#cssstate"
- }
- ]
- },
- "34889": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#stylescope"
- }
- ]
- },
- "34894": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#suspendnativeupdatescount"
- }
- ]
- },
- "34895": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#isstylescopehost"
- }
- ]
- },
- "34896": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "34897": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#left"
- }
- ]
- },
- "34898": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#top"
- }
- ]
- },
- "34899": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveleft"
- }
- ]
- },
- "34900": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivetop"
- }
- ]
- },
- "34901": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#dock"
- }
- ]
- },
- "34902": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#row"
- }
- ]
- },
- "34903": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#col"
- }
- ]
- },
- "34904": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#column"
- }
- ]
- },
- "34905": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#rowspan"
- }
- ]
- },
- "34906": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#colspan"
- }
- ]
- },
- "34907": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#columnspan"
- }
- ]
- },
- "34908": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#order"
- }
- ]
- },
- "34909": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#flexgrow"
- }
- ]
- },
- "34910": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#flexshrink"
- }
- ]
- },
- "34911": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#flexwrapbefore"
- }
- ]
- },
- "34912": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#alignself"
- }
- ]
- },
- "34913": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#oldleft"
- }
- ]
- },
- "34914": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#oldtop"
- }
- ]
- },
- "34915": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#oldright"
- }
- ]
- },
- "34916": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#oldbottom"
- }
- ]
- },
- "34917": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "34918": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveminwidth"
- }
- ]
- },
- "34919": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveminheight"
- }
- ]
- },
- "34920": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivewidth"
- }
- ]
- },
- "34921": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveheight"
- }
- ]
- },
- "34922": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivemargintop"
- }
- ]
- },
- "34923": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivemarginright"
- }
- ]
- },
- "34924": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivemarginbottom"
- }
- ]
- },
- "34925": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivemarginleft"
- }
- ]
- },
- "34926": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivepaddingtop"
- }
- ]
- },
- "34927": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivepaddingright"
- }
- ]
- },
- "34928": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivepaddingbottom"
- }
- ]
- },
- "34929": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivepaddingleft"
- }
- ]
- },
- "34930": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectivebordertopwidth"
- }
- ]
- },
- "34931": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveborderrightwidth"
- }
- ]
- },
- "34932": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "34933": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#effectiveborderleftwidth"
- }
- ]
- },
- "34934": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#defaultpaddingtop"
- }
- ]
- },
- "34935": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#defaultpaddingright"
- }
- ]
- },
- "34936": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#defaultpaddingbottom"
- }
- ]
- },
- "34937": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#defaultpaddingleft"
- }
- ]
- },
- "34938": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/AbsoluteLayout#ispaddingrelative"
- }
- ]
- },
- "34940": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/AbsoluteLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/AbsoluteLayout#reusable"
- }
- ]
- },
- "34941": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/AbsoluteLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "34945": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/AbsoluteLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "34949": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/AbsoluteLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34951": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/AbsoluteLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "34955": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/AbsoluteLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34957": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/AbsoluteLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34961": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/AbsoluteLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "34965": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/AbsoluteLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "34969": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/AbsoluteLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/AbsoluteLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "34971": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/AbsoluteLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34973": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/AbsoluteLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34977": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/AbsoluteLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34979": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/AbsoluteLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34981": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/AbsoluteLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34984": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/AbsoluteLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34987": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/AbsoluteLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "34993": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/AbsoluteLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34995": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/AbsoluteLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34997": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/AbsoluteLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35000": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/AbsoluteLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35003": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/AbsoluteLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35007": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/AbsoluteLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35010": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/AbsoluteLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35014": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/AbsoluteLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35018": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/AbsoluteLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35021": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/AbsoluteLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35023": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/AbsoluteLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35026": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/AbsoluteLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35029": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/AbsoluteLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35032": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/AbsoluteLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "35034": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/AbsoluteLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35036": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/AbsoluteLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35038": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/AbsoluteLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35043": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/AbsoluteLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35046": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/AbsoluteLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35049": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/AbsoluteLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35052": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/AbsoluteLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35055": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/AbsoluteLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35059": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/AbsoluteLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35062": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/AbsoluteLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35066": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/AbsoluteLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35069": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/AbsoluteLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35072": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/AbsoluteLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35074": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/AbsoluteLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "35078": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/AbsoluteLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35081": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/AbsoluteLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35083": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/AbsoluteLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35086": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/AbsoluteLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "35089": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/AbsoluteLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35093": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/AbsoluteLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35101": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/AbsoluteLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35105": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/AbsoluteLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35110": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/AbsoluteLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35113": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/AbsoluteLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "35118": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/AbsoluteLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/AbsoluteLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/AbsoluteLayout.md b/content/api/class/AbsoluteLayout.md
deleted file mode 100644
index d13b695c..00000000
--- a/content/api/class/AbsoluteLayout.md
+++ /dev/null
@@ -1,106 +0,0 @@
----
-title: AbsoluteLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'AbsoluteLayout'
-layout: api
-seo:
- description: "A layout that lets you specify exact locations (left/top coordinates) of its children."
----
-
-
-
-
-
-
-
layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ActionBar#layoutchangedevent"
- }
- ]
- },
- "5168": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ActionBar#showingmodallyevent"
- }
- ]
- },
- "5169": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ActionBar#shownmodallyevent"
- }
- ]
- },
- "5170": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityblurevent"
- }
- ]
- },
- "5171": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityfocusevent"
- }
- ]
- },
- "5172": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityfocuschangedevent"
- }
- ]
- },
- "5173": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ActionBar#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ActionBar#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "5182": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ActionBar#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ActionBar#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5190": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ActionBar#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ActionBar#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "5196": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ActionBar#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ActionBar#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "5200": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#accessibilityperformescapeevent"
- }
- ]
- },
- "5201": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ActionBar#loadedevent"
- }
- ]
- },
- "5202": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ActionBar#unloadedevent"
- }
- ]
- },
- "5203": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ActionBar#createdevent"
- }
- ]
- },
- "5204": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ActionBar#disposenativeviewevent"
- }
- ]
- },
- "5205": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ActionBar#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ActionBar#propertychangeevent"
- }
- ]
- },
- "5206": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ActionBar#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5214": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ActionBar#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5222": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ActionBar#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5230": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ActionBar#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5238": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ActionBar#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5246": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ActionBar#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ActionBar(): ActionBar",
- "url": "/api/class/ActionBar#constructor-new-actionbar",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "ActionBar"
- }
- ]
- },
- "5248": {
- "name": "title",
- "type": "Property",
- "url": "/api/class/ActionBar#title",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the action bar title."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "title: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the action bar title."
- }
- ]
- },
- "url": "/api/class/ActionBar#title"
- }
- ]
- },
- "5249": {
- "name": "titleView",
- "type": "Property",
- "url": "/api/class/ActionBar#titleview",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the title view. When set - replaces the title with a custom view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "titleView: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 17,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the title view. When set - replaces the title with a custom view."
- }
- ]
- },
- "url": "/api/class/ActionBar#titleview"
- }
- ]
- },
- "5250": {
- "name": "navigationButton",
- "type": "Property",
- "url": "/api/class/ActionBar#navigationbutton",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the navigation button (a.k.a. the back button)."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "navigationButton: NavigationButton",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 22,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the navigation button (a.k.a. the back button)."
- }
- ]
- },
- "url": "/api/class/ActionBar#navigationbutton"
- }
- ]
- },
- "5251": {
- "name": "flat",
- "type": "Property",
- "url": "/api/class/ActionBar#flat",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the shadow/border at the bottom of the ActionBar and removes translucency on iOS.\nDefault false."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "flat: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the shadow/border at the bottom of the ActionBar and removes translucency on iOS.\nDefault false."
- }
- ]
- },
- "url": "/api/class/ActionBar#flat"
- }
- ]
- },
- "5252": {
- "name": "actionItems",
- "type": "Property",
- "url": "/api/class/ActionBar#actionitems",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the collection of action items."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "actionItems: ActionItems",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 33,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the collection of action items."
- }
- ]
- },
- "url": "/api/class/ActionBar#actionitems"
- }
- ]
- },
- "5253": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ActionBar#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android specific options of the action bar."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: AndroidActionBarSettings",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 38,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android specific options of the action bar."
- }
- ]
- },
- "url": "/api/class/ActionBar#android"
- }
- ]
- },
- "5254": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ActionBar#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UINavigationBar](https://developer.apple.com/documentation/uikit/uinavigationbar) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UINavigationBar](https://developer.apple.com/documentation/uikit/uinavigationbar) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/ActionBar#ios"
- }
- ]
- },
- "5255": {
- "name": "iosIconRenderingMode",
- "type": "Property",
- "url": "/api/class/ActionBar#iosiconrenderingmode",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIImageRenderingMode of the action bar icons in iOS. Defaults to \"alwaysOriginal\"\nValid values are:\n - automatic\n - alwaysOriginal\n - alwaysTemplate"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosIconRenderingMode: "automatic" | "alwaysOriginal" | "alwaysTemplate"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIImageRenderingMode of the action bar icons in iOS. Defaults to \"alwaysOriginal\"\nValid values are:\n - automatic\n - alwaysOriginal\n - alwaysTemplate"
- }
- ]
- },
- "url": "/api/class/ActionBar#iosiconrenderingmode"
- }
- ]
- },
- "5256": {
- "name": "effectiveContentInsetLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivecontentinsetleft",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "effectiveContentInsetLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 54,
- "character": 8
- }
- ],
- "url": "/api/class/ActionBar#effectivecontentinsetleft"
- }
- ]
- },
- "5257": {
- "name": "effectiveContentInsetRight",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivecontentinsetright",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "effectiveContentInsetRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 55,
- "character": 8
- }
- ],
- "url": "/api/class/ActionBar#effectivecontentinsetright"
- }
- ]
- },
- "5258": {
- "name": "update",
- "type": "Method",
- "url": "/api/class/ActionBar#update",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "update(): any",
- "url": "/api/class/ActionBar#update-update-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 60,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the action bar."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "5266": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ActionBar#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ActionBar#bindingcontext"
- }
- ]
- },
- "5267": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ActionBar#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#bordercolor"
- }
- ]
- },
- "5268": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ActionBar#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#bordertopcolor"
- }
- ]
- },
- "5269": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ActionBar#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderrightcolor"
- }
- ]
- },
- "5270": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ActionBar#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderbottomcolor"
- }
- ]
- },
- "5271": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ActionBar#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderleftcolor"
- }
- ]
- },
- "5272": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderwidth"
- }
- ]
- },
- "5273": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#bordertopwidth"
- }
- ]
- },
- "5274": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderrightwidth"
- }
- ]
- },
- "5275": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderbottomwidth"
- }
- ]
- },
- "5276": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderleftwidth"
- }
- ]
- },
- "5277": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ActionBar#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderradius"
- }
- ]
- },
- "5278": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ActionBar#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#bordertopleftradius"
- }
- ]
- },
- "5279": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ActionBar#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#bordertoprightradius"
- }
- ]
- },
- "5280": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ActionBar#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderbottomrightradius"
- }
- ]
- },
- "5281": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ActionBar#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#borderbottomleftradius"
- }
- ]
- },
- "5282": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ActionBar#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#color"
- }
- ]
- },
- "5283": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ActionBar#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessible"
- }
- ]
- },
- "5284": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityhidden"
- }
- ]
- },
- "5285": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityidentifier"
- }
- ]
- },
- "5286": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityrole"
- }
- ]
- },
- "5287": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilitystate"
- }
- ]
- },
- "5288": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilitylabel"
- }
- ]
- },
- "5289": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityvalue"
- }
- ]
- },
- "5290": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilityhint"
- }
- ]
- },
- "5291": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#accessibilityliveregion"
- }
- ]
- },
- "5292": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilitylanguage"
- }
- ]
- },
- "5293": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ActionBar#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ActionBar#accessibilitymediasession"
- }
- ]
- },
- "5294": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ActionBar#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ActionBar#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "5295": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ActionBar#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ActionBar#iosaccessibilityminfontscale"
- }
- ]
- },
- "5296": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ActionBar#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ActionBar#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "5297": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ActionBar#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ActionBar#androidcontentdescriptionupdated"
- }
- ]
- },
- "5298": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ActionBar#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#automationtext"
- }
- ]
- },
- "5299": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ActionBar#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ActionBar#androidelevation"
- }
- ]
- },
- "5300": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ActionBar#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ActionBar#androiddynamicelevationoffset"
- }
- ]
- },
- "5301": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ActionBar#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ActionBar#background"
- }
- ]
- },
- "5302": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ActionBar#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#backgroundcolor"
- }
- ]
- },
- "5303": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ActionBar#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#backgroundimage"
- }
- ]
- },
- "5304": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ActionBar#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#boxshadow"
- }
- ]
- },
- "5305": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ActionBar#minwidth"
- }
- ]
- },
- "5306": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ActionBar#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ActionBar#minheight"
- }
- ]
- },
- "5307": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ActionBar#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#width"
- }
- ]
- },
- "5308": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ActionBar#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#height"
- }
- ]
- },
- "5309": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ActionBar#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ActionBar#margin"
- }
- ]
- },
- "5310": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ActionBar#marginleft"
- }
- ]
- },
- "5311": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ActionBar#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ActionBar#margintop"
- }
- ]
- },
- "5312": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ActionBar#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ActionBar#marginright"
- }
- ]
- },
- "5313": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ActionBar#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ActionBar#marginbottom"
- }
- ]
- },
- "5314": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ActionBar#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ActionBar#horizontalalignment"
- }
- ]
- },
- "5315": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ActionBar#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ActionBar#verticalalignment"
- }
- ]
- },
- "5316": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ActionBar#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#visibility"
- }
- ]
- },
- "5317": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ActionBar#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ActionBar#opacity"
- }
- ]
- },
- "5318": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ActionBar#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ActionBar#rotate"
- }
- ]
- },
- "5319": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ActionBar#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ActionBar#rotatex"
- }
- ]
- },
- "5320": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ActionBar#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ActionBar#rotatey"
- }
- ]
- },
- "5321": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ActionBar#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ActionBar#perspective"
- }
- ]
- },
- "5322": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ActionBar#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ActionBar#translatex"
- }
- ]
- },
- "5323": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ActionBar#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ActionBar#translatey"
- }
- ]
- },
- "5324": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ActionBar#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#scalex"
- }
- ]
- },
- "5325": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ActionBar#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#scaley"
- }
- ]
- },
- "5326": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ActionBar#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#originx"
- }
- ]
- },
- "5327": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ActionBar#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#originy"
- }
- ]
- },
- "5328": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ActionBar#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#isenabled"
- }
- ]
- },
- "5329": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ActionBar#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ActionBar#isuserinteractionenabled"
- }
- ]
- },
- "5330": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ActionBar#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ActionBar#iosoverflowsafearea"
- }
- ]
- },
- "5331": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ActionBar#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ActionBar#iosoverflowsafeareaenabled"
- }
- ]
- },
- "5332": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ActionBar#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ActionBar#iosignoresafearea"
- }
- ]
- },
- "5333": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ActionBar#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ActionBar#islayoutvalid"
- }
- ]
- },
- "5334": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ActionBar#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ActionBar#csstype"
- }
- ]
- },
- "5335": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ActionBar#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#cssclasses"
- }
- ]
- },
- "5336": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ActionBar#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#csspseudoclasses"
- }
- ]
- },
- "5337": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ActionBar#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ActionBar#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5341": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ActionBar#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ActionBar#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5348": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ActionBar#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ActionBar#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "5350": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ActionBar#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ActionBar#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "5352": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ActionBar#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ActionBar#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "5354": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ActionBar#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ActionBar#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5358": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ActionBar#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ActionBar#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5364": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ActionBar#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ActionBar#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5368": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ActionBar#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ActionBar#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5374": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ActionBar#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ActionBar#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "5376": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ActionBar#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ActionBar#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "5379": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ActionBar#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActionBar#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "5387": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ActionBar#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActionBar#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActionBar#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActionBar#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActionBar#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/ActionBar#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "5430": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ActionBar#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ActionBar#modal"
- }
- ]
- },
- "5431": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ActionBar#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ActionBar#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "5434": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ActionBar#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ActionBar#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "5437": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ActionBar#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ActionBar#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "5444": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ActionBar#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ActionBar#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "5446": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ActionBar#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ActionBar#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "5448": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ActionBar#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ActionBar#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "5451": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ActionBar#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ActionBar#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "5453": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ActionBar#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ActionBar#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "5465": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ActionBar#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ActionBar#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "5467": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ActionBar#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ActionBar#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "5469": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ActionBar#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ActionBar#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "5471": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ActionBar#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ActionBar#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5477": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ActionBar#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ActionBar#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5479": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ActionBar#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ActionBar#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "5481": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ActionBar#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ActionBar#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5483": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ActionBar#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ActionBar#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5489": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ActionBar#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ActionBar#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5492": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ActionBar#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ActionBar#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5495": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ActionBar#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ActionBar#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5564": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ActionBar#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ActionBar#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "5570": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ActionBar#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ActionBar#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5575": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ActionBar#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ActionBar#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5577": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ActionBar#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ActionBar#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5579": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ActionBar#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ActionBar#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "5582": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ActionBar#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ActionBar#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "5585": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ActionBar#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ActionBar#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "5589": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ActionBar#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#testid"
- }
- ]
- },
- "5590": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ActionBar#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#touchanimation"
- }
- ]
- },
- "5591": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ActionBar#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#ignoretouchanimation"
- }
- ]
- },
- "5592": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ActionBar#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#touchdelay"
- }
- ]
- },
- "5593": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ActionBar#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#closemodalcallback"
- }
- ]
- },
- "5594": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ActionBar#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ActionBar#transitionid"
- }
- ]
- },
- "5595": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ActionBar#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#islayoutvalid"
- }
- ]
- },
- "5596": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ActionBar#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ActionBar#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5598": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ActionBar#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ActionBar#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5601": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ActionBar#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5609": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ActionBar#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5617": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ActionBar#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5625": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ActionBar#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ActionBar#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "5628": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ActionBar#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ActionBar#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5631": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ActionBar#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ActionBar#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5635": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ActionBar#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ActionBar#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5641": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ActionBar#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ActionBar#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5643": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ActionBar#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ActionBar#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5645": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ActionBar#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ActionBar#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5647": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ActionBar#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ActionBar#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "5651": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ActionBar#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ActionBar#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "5655": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ActionBar#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ActionBar#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "5659": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ActionBar#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ActionBar#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "5663": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ActionBar#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ActionBar#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5665": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ActionBar#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ActionBar#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5671": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ActionBar#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ActionBar#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5673": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ActionBar#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ActionBar#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5677": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ActionBar#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#domnode"
- }
- ]
- },
- "5678": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ActionBar#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#recyclenativeview"
- }
- ]
- },
- "5679": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ActionBar#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ActionBar#viewcontroller"
- }
- ]
- },
- "5680": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ActionBar#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ActionBar#nativeviewprotected"
- }
- ]
- },
- "5681": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ActionBar#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ActionBar#parent"
- }
- ]
- },
- "5682": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ActionBar#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ActionBar#iscollapsed"
- }
- ]
- },
- "5683": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ActionBar#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ActionBar#id"
- }
- ]
- },
- "5684": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ActionBar#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ActionBar#classname"
- }
- ]
- },
- "5685": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ActionBar#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ActionBar#sharedtransitiontag"
- }
- ]
- },
- "5686": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ActionBar#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ActionBar#sharedtransitionignore"
- }
- ]
- },
- "5687": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ActionBar#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#domid"
- }
- ]
- },
- "5688": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ActionBar#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#context"
- }
- ]
- },
- "5689": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ActionBar#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#isaddedtonativevisualtree"
- }
- ]
- },
- "5690": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ActionBar#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#cssstate"
- }
- ]
- },
- "5691": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ActionBar#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#stylescope"
- }
- ]
- },
- "5696": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ActionBar#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ActionBar#suspendnativeupdatescount"
- }
- ]
- },
- "5697": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ActionBar#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#isstylescopehost"
- }
- ]
- },
- "5698": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ActionBar#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "5699": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ActionBar#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#left"
- }
- ]
- },
- "5700": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ActionBar#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#top"
- }
- ]
- },
- "5701": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveleft"
- }
- ]
- },
- "5702": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivetop"
- }
- ]
- },
- "5703": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ActionBar#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#dock"
- }
- ]
- },
- "5704": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ActionBar#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#row"
- }
- ]
- },
- "5705": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ActionBar#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#col"
- }
- ]
- },
- "5706": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ActionBar#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#column"
- }
- ]
- },
- "5707": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ActionBar#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#rowspan"
- }
- ]
- },
- "5708": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ActionBar#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#colspan"
- }
- ]
- },
- "5709": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ActionBar#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#columnspan"
- }
- ]
- },
- "5710": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ActionBar#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#order"
- }
- ]
- },
- "5711": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ActionBar#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#flexgrow"
- }
- ]
- },
- "5712": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ActionBar#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#flexshrink"
- }
- ]
- },
- "5713": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ActionBar#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#flexwrapbefore"
- }
- ]
- },
- "5714": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ActionBar#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#alignself"
- }
- ]
- },
- "5715": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#oldleft"
- }
- ]
- },
- "5716": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ActionBar#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#oldtop"
- }
- ]
- },
- "5717": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ActionBar#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#oldright"
- }
- ]
- },
- "5718": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ActionBar#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#oldbottom"
- }
- ]
- },
- "5719": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ActionBar#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#ignoreflexminwidthheightreset"
- }
- ]
- },
- "5720": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveminwidth"
- }
- ]
- },
- "5721": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveminheight"
- }
- ]
- },
- "5722": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivewidth"
- }
- ]
- },
- "5723": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveheight"
- }
- ]
- },
- "5724": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivemargintop"
- }
- ]
- },
- "5725": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivemarginright"
- }
- ]
- },
- "5726": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivemarginbottom"
- }
- ]
- },
- "5727": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivemarginleft"
- }
- ]
- },
- "5728": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivepaddingtop"
- }
- ]
- },
- "5729": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivepaddingright"
- }
- ]
- },
- "5730": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivepaddingbottom"
- }
- ]
- },
- "5731": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivepaddingleft"
- }
- ]
- },
- "5732": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectivebordertopwidth"
- }
- ]
- },
- "5733": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveborderrightwidth"
- }
- ]
- },
- "5734": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveborderbottomwidth"
- }
- ]
- },
- "5735": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ActionBar#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#effectiveborderleftwidth"
- }
- ]
- },
- "5736": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ActionBar#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#defaultpaddingtop"
- }
- ]
- },
- "5737": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ActionBar#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#defaultpaddingright"
- }
- ]
- },
- "5738": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ActionBar#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#defaultpaddingbottom"
- }
- ]
- },
- "5739": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ActionBar#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#defaultpaddingleft"
- }
- ]
- },
- "5740": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ActionBar#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActionBar#ispaddingrelative"
- }
- ]
- },
- "5742": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ActionBar#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ActionBar#reusable"
- }
- ]
- },
- "5743": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ActionBar#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ActionBar#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "5747": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ActionBar#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ActionBar#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "5751": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ActionBar#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ActionBar#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "5753": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ActionBar#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ActionBar#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "5757": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ActionBar#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ActionBar#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "5759": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ActionBar#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ActionBar#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "5763": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ActionBar#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ActionBar#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "5767": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ActionBar#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ActionBar#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "5771": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ActionBar#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ActionBar#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "5773": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ActionBar#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ActionBar#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5775": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ActionBar#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ActionBar#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5779": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ActionBar#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ActionBar#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5781": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ActionBar#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ActionBar#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5783": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActionBar#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ActionBar#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5786": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActionBar#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ActionBar#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5789": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ActionBar#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ActionBar#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "5795": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ActionBar#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ActionBar#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5797": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ActionBar#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ActionBar#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5799": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ActionBar#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ActionBar#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5802": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ActionBar#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ActionBar#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5805": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ActionBar#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ActionBar#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5809": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ActionBar#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ActionBar#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5812": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ActionBar#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ActionBar#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5816": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ActionBar#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ActionBar#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5820": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ActionBar#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ActionBar#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5823": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ActionBar#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ActionBar#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "5825": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ActionBar#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ActionBar#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5828": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ActionBar#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ActionBar#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5831": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ActionBar#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ActionBar#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5834": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ActionBar#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ActionBar#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "5836": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ActionBar#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ActionBar#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5838": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ActionBar#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ActionBar#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5840": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ActionBar#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ActionBar#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5845": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ActionBar#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ActionBar#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5848": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ActionBar#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ActionBar#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5851": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ActionBar#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ActionBar#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5854": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ActionBar#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ActionBar#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "5857": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ActionBar#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ActionBar#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "5861": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ActionBar#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ActionBar#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5864": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ActionBar#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ActionBar#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "5868": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ActionBar#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ActionBar#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5871": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ActionBar#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ActionBar#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5874": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActionBar#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ActionBar#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5876": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ActionBar#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ActionBar#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "5880": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ActionBar#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ActionBar#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5883": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ActionBar#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ActionBar#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5885": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ActionBar#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ActionBar#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "5888": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ActionBar#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ActionBar#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "5891": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ActionBar#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ActionBar#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5895": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ActionBar#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionBar#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5903": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ActionBar#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ActionBar#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5907": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ActionBar#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ActionBar#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5912": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ActionBar#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ActionBar#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "5915": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ActionBar#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ActionBar#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "5920": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ActionBar#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ActionBar#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ActionBar.md b/content/api/class/ActionBar.md
deleted file mode 100644
index c9a8e15b..00000000
--- a/content/api/class/ActionBar.md
+++ /dev/null
@@ -1,206 +0,0 @@
----
-title: ActionBar
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ActionBar'
-layout: api
-seo:
- description: "Provides an abstraction over the ActionBar (android) and NavigationBar (iOS)."
----
-
-
-
-
-
-
-loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ActionItem#loadedevent"
- }
- ]
- },
- "5925": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ActionItem#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ActionItem#unloadedevent"
- }
- ]
- },
- "5926": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ActionItem#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ActionItem#createdevent"
- }
- ]
- },
- "5927": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ActionItem#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ActionItem#disposenativeviewevent"
- }
- ]
- },
- "5928": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ActionItem#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ActionItem#propertychangeevent"
- }
- ]
- },
- "5929": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ActionItem#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5937": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ActionItem#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5945": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ActionItem#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5953": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ActionItem#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5961": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ActionItem#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5969": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ActionItem#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ActionItem(): ActionItem",
- "url": "/api/class/ActionItem#constructor-new-actionitem",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "ActionItem"
- }
- ]
- },
- "5971": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/ActionItem#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text of the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 109,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text of the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#text"
- }
- ]
- },
- "5972": {
- "name": "icon",
- "type": "Property",
- "url": "/api/class/ActionItem#icon",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the icon of the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "icon: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 114,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the icon of the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#icon"
- }
- ]
- },
- "5973": {
- "name": "actionView",
- "type": "Property",
- "url": "/api/class/ActionItem#actionview",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the custom action view of the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "actionView: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 119,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the custom action view of the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#actionview"
- }
- ]
- },
- "5974": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ActionItem#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "visibility: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 124,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#visibility"
- }
- ]
- },
- "5975": {
- "name": "actionBar",
- "type": "Property",
- "url": "/api/class/ActionItem#actionbar",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the action bar that contains the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "actionBar: ActionBar",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 129,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the action bar that contains the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#actionbar"
- }
- ]
- },
- "5976": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ActionItem#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void): void",
- "url": "/api/class/ActionItem#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 137,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"tap\", callback: (args: EventData) => void): void",
- "url": "/api/class/ActionItem#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 142,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a tap event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"tap\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "5991": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ActionItem#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOS specific options of the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: IOSActionItemSettings",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 155,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOS specific options of the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#ios"
- }
- ]
- },
- "5992": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ActionItem#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Android specific options of the action item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: AndroidActionItemSettings",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 161,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Android specific options of the action item."
- }
- ]
- },
- "url": "/api/class/ActionItem#android"
- }
- ]
- },
- "5993": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ActionItem#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#domnode"
- }
- ]
- },
- "5994": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ActionItem#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#recyclenativeview"
- }
- ]
- },
- "5995": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ActionItem#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ActionItem#viewcontroller"
- }
- ]
- },
- "5996": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ActionItem#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#bindingcontext"
- }
- ]
- },
- "5997": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ActionItem#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ActionItem#nativeviewprotected"
- }
- ]
- },
- "5998": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ActionItem#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ActionItem#parent"
- }
- ]
- },
- "5999": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ActionItem#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ActionItem#iscollapsed"
- }
- ]
- },
- "6000": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ActionItem#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ActionItem#id"
- }
- ]
- },
- "6001": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ActionItem#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ActionItem#classname"
- }
- ]
- },
- "6002": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ActionItem#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ActionItem#sharedtransitiontag"
- }
- ]
- },
- "6003": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ActionItem#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ActionItem#sharedtransitionignore"
- }
- ]
- },
- "6004": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ActionItem#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#domid"
- }
- ]
- },
- "6005": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ActionItem#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#context"
- }
- ]
- },
- "6006": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ActionItem#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#isaddedtonativevisualtree"
- }
- ]
- },
- "6007": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ActionItem#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#cssstate"
- }
- ]
- },
- "6008": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ActionItem#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#stylescope"
- }
- ]
- },
- "6013": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ActionItem#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ActionItem#suspendnativeupdatescount"
- }
- ]
- },
- "6014": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ActionItem#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#isstylescopehost"
- }
- ]
- },
- "6015": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ActionItem#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "6016": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ActionItem#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#left"
- }
- ]
- },
- "6017": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ActionItem#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#top"
- }
- ]
- },
- "6018": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveleft"
- }
- ]
- },
- "6019": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivetop"
- }
- ]
- },
- "6020": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ActionItem#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#dock"
- }
- ]
- },
- "6021": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ActionItem#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#row"
- }
- ]
- },
- "6022": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ActionItem#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#col"
- }
- ]
- },
- "6023": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ActionItem#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#column"
- }
- ]
- },
- "6024": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ActionItem#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#rowspan"
- }
- ]
- },
- "6025": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ActionItem#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#colspan"
- }
- ]
- },
- "6026": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ActionItem#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#columnspan"
- }
- ]
- },
- "6027": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ActionItem#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#order"
- }
- ]
- },
- "6028": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ActionItem#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#flexgrow"
- }
- ]
- },
- "6029": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ActionItem#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#flexshrink"
- }
- ]
- },
- "6030": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ActionItem#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#flexwrapbefore"
- }
- ]
- },
- "6031": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ActionItem#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#alignself"
- }
- ]
- },
- "6032": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ActionItem#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#oldleft"
- }
- ]
- },
- "6033": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ActionItem#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#oldtop"
- }
- ]
- },
- "6034": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ActionItem#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#oldright"
- }
- ]
- },
- "6035": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ActionItem#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#oldbottom"
- }
- ]
- },
- "6036": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ActionItem#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#ignoreflexminwidthheightreset"
- }
- ]
- },
- "6037": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveminwidth"
- }
- ]
- },
- "6038": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveminheight"
- }
- ]
- },
- "6039": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivewidth"
- }
- ]
- },
- "6040": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveheight"
- }
- ]
- },
- "6041": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivemargintop"
- }
- ]
- },
- "6042": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivemarginright"
- }
- ]
- },
- "6043": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivemarginbottom"
- }
- ]
- },
- "6044": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivemarginleft"
- }
- ]
- },
- "6045": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivepaddingtop"
- }
- ]
- },
- "6046": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivepaddingright"
- }
- ]
- },
- "6047": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivepaddingbottom"
- }
- ]
- },
- "6048": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivepaddingleft"
- }
- ]
- },
- "6049": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ActionItem#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectivebordertopwidth"
- }
- ]
- },
- "6050": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveborderrightwidth"
- }
- ]
- },
- "6051": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveborderbottomwidth"
- }
- ]
- },
- "6052": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ActionItem#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#effectiveborderleftwidth"
- }
- ]
- },
- "6053": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ActionItem#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#defaultpaddingtop"
- }
- ]
- },
- "6054": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ActionItem#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#defaultpaddingright"
- }
- ]
- },
- "6055": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ActionItem#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#defaultpaddingbottom"
- }
- ]
- },
- "6056": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ActionItem#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#defaultpaddingleft"
- }
- ]
- },
- "6057": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ActionItem#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#ispaddingrelative"
- }
- ]
- },
- "6059": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ActionItem#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ActionItem#reusable"
- }
- ]
- },
- "6060": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ActionItem#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ActionItem#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "6064": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ActionItem#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ActionItem#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "6068": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ActionItem#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ActionItem#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "6070": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ActionItem#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ActionItem#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "6074": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ActionItem#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ActionItem#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6076": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ActionItem#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ActionItem#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "6080": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ActionItem#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ActionItem#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "6084": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ActionItem#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ActionItem#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "6088": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ActionItem#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ActionItem#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "6090": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ActionItem#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ActionItem#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6092": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ActionItem#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ActionItem#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6096": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ActionItem#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ActionItem#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6098": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ActionItem#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ActionItem#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6100": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ActionItem#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ActionItem#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6102": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActionItem#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ActionItem#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6105": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActionItem#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ActionItem#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6108": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ActionItem#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ActionItem#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "6114": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ActionItem#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ActionItem#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6116": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ActionItem#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ActionItem#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6118": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ActionItem#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#cssclasses"
- }
- ]
- },
- "6119": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ActionItem#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ActionItem#csspseudoclasses"
- }
- ]
- },
- "6120": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ActionItem#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ActionItem#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6123": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ActionItem#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ActionItem#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6126": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ActionItem#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ActionItem#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6130": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ActionItem#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ActionItem#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6133": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ActionItem#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ActionItem#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6135": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ActionItem#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ActionItem#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6141": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ActionItem#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ActionItem#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6145": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ActionItem#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ActionItem#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6149": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ActionItem#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ActionItem#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6152": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ActionItem#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ActionItem#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6154": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ActionItem#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ActionItem#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6157": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ActionItem#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ActionItem#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6160": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ActionItem#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ActionItem#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6163": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ActionItem#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ActionItem#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "6165": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ActionItem#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ActionItem#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6167": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ActionItem#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ActionItem#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6169": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ActionItem#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ActionItem#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6171": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ActionItem#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ActionItem#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6174": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ActionItem#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ActionItem#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6179": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ActionItem#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ActionItem#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6182": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ActionItem#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ActionItem#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6185": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ActionItem#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ActionItem#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6188": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ActionItem#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ActionItem#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "6191": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ActionItem#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ActionItem#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "6195": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ActionItem#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ActionItem#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6198": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/ActionItem#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/ActionItem#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6201": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ActionItem#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ActionItem#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "6205": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ActionItem#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ActionItem#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6208": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ActionItem#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ActionItem#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6211": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActionItem#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ActionItem#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6213": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ActionItem#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ActionItem#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "6217": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ActionItem#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ActionItem#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6220": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ActionItem#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/ActionItem#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/ActionItem#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "6227": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ActionItem#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ActionItem#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6230": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ActionItem#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ActionItem#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6232": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ActionItem#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ActionItem#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6235": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ActionItem#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ActionItem#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "6238": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ActionItem#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ActionItem#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6242": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ActionItem#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6250": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ActionItem#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6258": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ActionItem#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6266": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ActionItem#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActionItem#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6274": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ActionItem#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ActionItem#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6278": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ActionItem#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ActionItem#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6283": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ActionItem#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ActionItem#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "6286": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ActionItem#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ActionItem#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "6291": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ActionItem#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ActionItem#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ActionItem.md b/content/api/class/ActionItem.md
deleted file mode 100644
index 03c5a23e..00000000
--- a/content/api/class/ActionItem.md
+++ /dev/null
@@ -1,164 +0,0 @@
----
-title: ActionItem
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ActionItem'
-layout: api
-seo:
- description: "Represents an action item in the action bar."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#layoutchangedevent"
- }
- ]
- },
- "6682": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#showingmodallyevent"
- }
- ]
- },
- "6683": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#shownmodallyevent"
- }
- ]
- },
- "6684": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityblurevent"
- }
- ]
- },
- "6685": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityfocusevent"
- }
- ]
- },
- "6686": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityfocuschangedevent"
- }
- ]
- },
- "6687": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ActivityIndicator#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "6696": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ActivityIndicator#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6704": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ActivityIndicator#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "6710": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ActivityIndicator#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "6714": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#accessibilityperformescapeevent"
- }
- ]
- },
- "6715": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#loadedevent"
- }
- ]
- },
- "6716": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#unloadedevent"
- }
- ]
- },
- "6717": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#createdevent"
- }
- ]
- },
- "6718": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#disposenativeviewevent"
- }
- ]
- },
- "6719": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#propertychangeevent"
- }
- ]
- },
- "6720": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6728": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6736": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6744": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6752": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6760": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ActivityIndicator#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ActivityIndicator(): ActivityIndicator",
- "url": "/api/class/ActivityIndicator#constructor-new-activityindicator",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "ActivityIndicator"
- }
- ]
- },
- "6762": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ProgressBar.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/activity-indicator/index.d.ts",
- "line": 10,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ProgressBar.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#android"
- }
- ]
- },
- "6763": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIActivityIndicatorView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIActivityIndicatorView_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/activity-indicator/index.d.ts",
- "line": 15,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIActivityIndicatorView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIActivityIndicatorView_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#ios"
- }
- ]
- },
- "6764": {
- "name": "busy",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#busy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the widget is currently displaying progress."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "busy: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/activity-indicator/index.d.ts",
- "line": 20,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the widget is currently displaying progress."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#busy"
- }
- ]
- },
- "6765": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#bindingcontext"
- }
- ]
- },
- "6766": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#bordercolor"
- }
- ]
- },
- "6767": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#bordertopcolor"
- }
- ]
- },
- "6768": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderrightcolor"
- }
- ]
- },
- "6769": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderbottomcolor"
- }
- ]
- },
- "6770": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderleftcolor"
- }
- ]
- },
- "6771": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderwidth"
- }
- ]
- },
- "6772": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#bordertopwidth"
- }
- ]
- },
- "6773": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderrightwidth"
- }
- ]
- },
- "6774": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderbottomwidth"
- }
- ]
- },
- "6775": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderleftwidth"
- }
- ]
- },
- "6776": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderradius"
- }
- ]
- },
- "6777": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#bordertopleftradius"
- }
- ]
- },
- "6778": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#bordertoprightradius"
- }
- ]
- },
- "6779": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderbottomrightradius"
- }
- ]
- },
- "6780": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#borderbottomleftradius"
- }
- ]
- },
- "6781": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#color"
- }
- ]
- },
- "6782": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessible"
- }
- ]
- },
- "6783": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityhidden"
- }
- ]
- },
- "6784": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityidentifier"
- }
- ]
- },
- "6785": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityrole"
- }
- ]
- },
- "6786": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilitystate"
- }
- ]
- },
- "6787": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilitylabel"
- }
- ]
- },
- "6788": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityvalue"
- }
- ]
- },
- "6789": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilityhint"
- }
- ]
- },
- "6790": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#accessibilityliveregion"
- }
- ]
- },
- "6791": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilitylanguage"
- }
- ]
- },
- "6792": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#accessibilitymediasession"
- }
- ]
- },
- "6793": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "6794": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iosaccessibilityminfontscale"
- }
- ]
- },
- "6795": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "6796": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#androidcontentdescriptionupdated"
- }
- ]
- },
- "6797": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#automationtext"
- }
- ]
- },
- "6798": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#androidelevation"
- }
- ]
- },
- "6799": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#androiddynamicelevationoffset"
- }
- ]
- },
- "6800": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#background"
- }
- ]
- },
- "6801": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#backgroundcolor"
- }
- ]
- },
- "6802": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#backgroundimage"
- }
- ]
- },
- "6803": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#boxshadow"
- }
- ]
- },
- "6804": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#minwidth"
- }
- ]
- },
- "6805": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#minheight"
- }
- ]
- },
- "6806": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#width"
- }
- ]
- },
- "6807": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#height"
- }
- ]
- },
- "6808": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#margin"
- }
- ]
- },
- "6809": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#marginleft"
- }
- ]
- },
- "6810": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#margintop"
- }
- ]
- },
- "6811": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#marginright"
- }
- ]
- },
- "6812": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#marginbottom"
- }
- ]
- },
- "6813": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#horizontalalignment"
- }
- ]
- },
- "6814": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#verticalalignment"
- }
- ]
- },
- "6815": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#visibility"
- }
- ]
- },
- "6816": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#opacity"
- }
- ]
- },
- "6817": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#rotate"
- }
- ]
- },
- "6818": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#rotatex"
- }
- ]
- },
- "6819": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#rotatey"
- }
- ]
- },
- "6820": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#perspective"
- }
- ]
- },
- "6821": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#translatex"
- }
- ]
- },
- "6822": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#translatey"
- }
- ]
- },
- "6823": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#scalex"
- }
- ]
- },
- "6824": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#scaley"
- }
- ]
- },
- "6825": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#originx"
- }
- ]
- },
- "6826": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#originy"
- }
- ]
- },
- "6827": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#isenabled"
- }
- ]
- },
- "6828": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#isuserinteractionenabled"
- }
- ]
- },
- "6829": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iosoverflowsafearea"
- }
- ]
- },
- "6830": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iosoverflowsafeareaenabled"
- }
- ]
- },
- "6831": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iosignoresafearea"
- }
- ]
- },
- "6832": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#islayoutvalid"
- }
- ]
- },
- "6833": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#csstype"
- }
- ]
- },
- "6834": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#cssclasses"
- }
- ]
- },
- "6835": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#csspseudoclasses"
- }
- ]
- },
- "6836": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ActivityIndicator#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6840": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ActivityIndicator#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6847": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ActivityIndicator#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "6849": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ActivityIndicator#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "6851": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ActivityIndicator#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "6853": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ActivityIndicator#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6857": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ActivityIndicator#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6863": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ActivityIndicator#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6867": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ActivityIndicator#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6873": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ActivityIndicator#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6875": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ActivityIndicator#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "6878": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActivityIndicator#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "6886": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActivityIndicator#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActivityIndicator#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActivityIndicator#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ActivityIndicator#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/ActivityIndicator#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "6929": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#modal"
- }
- ]
- },
- "6930": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ActivityIndicator#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "6933": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ActivityIndicator#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "6936": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ActivityIndicator#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "6943": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ActivityIndicator#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "6945": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ActivityIndicator#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "6947": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ActivityIndicator#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "6950": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ActivityIndicator#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "6952": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ActivityIndicator#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6964": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ActivityIndicator#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "6966": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ActivityIndicator#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6968": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ActivityIndicator#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "6970": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ActivityIndicator#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6976": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ActivityIndicator#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6978": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ActivityIndicator#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6980": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ActivityIndicator#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6982": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ActivityIndicator#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6988": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ActivityIndicator#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6991": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ActivityIndicator#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6994": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ActivityIndicator#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7063": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ActivityIndicator#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7069": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ActivityIndicator#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7074": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ActivityIndicator#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7076": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ActivityIndicator#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7078": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ActivityIndicator#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7081": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ActivityIndicator#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "7084": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ActivityIndicator#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "7088": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#testid"
- }
- ]
- },
- "7089": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#touchanimation"
- }
- ]
- },
- "7090": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#ignoretouchanimation"
- }
- ]
- },
- "7091": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#touchdelay"
- }
- ]
- },
- "7092": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#closemodalcallback"
- }
- ]
- },
- "7093": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#transitionid"
- }
- ]
- },
- "7094": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#islayoutvalid"
- }
- ]
- },
- "7095": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ActivityIndicator#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7097": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ActivityIndicator#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7100": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7108": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7116": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7124": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ActivityIndicator#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "7127": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ActivityIndicator#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7130": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ActivityIndicator#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7134": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ActivityIndicator#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7140": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ActivityIndicator#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7142": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ActivityIndicator#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7144": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ActivityIndicator#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7146": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ActivityIndicator#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7150": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ActivityIndicator#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7154": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ActivityIndicator#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "7158": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ActivityIndicator#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "7162": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ActivityIndicator#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7164": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ActivityIndicator#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7170": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ActivityIndicator#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7172": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ActivityIndicator#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7176": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#domnode"
- }
- ]
- },
- "7177": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#recyclenativeview"
- }
- ]
- },
- "7178": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#viewcontroller"
- }
- ]
- },
- "7179": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#nativeviewprotected"
- }
- ]
- },
- "7180": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#parent"
- }
- ]
- },
- "7181": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#iscollapsed"
- }
- ]
- },
- "7182": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#id"
- }
- ]
- },
- "7183": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#classname"
- }
- ]
- },
- "7184": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#sharedtransitiontag"
- }
- ]
- },
- "7185": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#sharedtransitionignore"
- }
- ]
- },
- "7186": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#domid"
- }
- ]
- },
- "7187": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#context"
- }
- ]
- },
- "7188": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#isaddedtonativevisualtree"
- }
- ]
- },
- "7189": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#cssstate"
- }
- ]
- },
- "7190": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#stylescope"
- }
- ]
- },
- "7195": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#suspendnativeupdatescount"
- }
- ]
- },
- "7196": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#isstylescopehost"
- }
- ]
- },
- "7197": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "7198": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#left"
- }
- ]
- },
- "7199": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#top"
- }
- ]
- },
- "7200": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveleft"
- }
- ]
- },
- "7201": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivetop"
- }
- ]
- },
- "7202": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#dock"
- }
- ]
- },
- "7203": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#row"
- }
- ]
- },
- "7204": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#col"
- }
- ]
- },
- "7205": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#column"
- }
- ]
- },
- "7206": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#rowspan"
- }
- ]
- },
- "7207": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#colspan"
- }
- ]
- },
- "7208": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#columnspan"
- }
- ]
- },
- "7209": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#order"
- }
- ]
- },
- "7210": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#flexgrow"
- }
- ]
- },
- "7211": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#flexshrink"
- }
- ]
- },
- "7212": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#flexwrapbefore"
- }
- ]
- },
- "7213": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#alignself"
- }
- ]
- },
- "7214": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#oldleft"
- }
- ]
- },
- "7215": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#oldtop"
- }
- ]
- },
- "7216": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#oldright"
- }
- ]
- },
- "7217": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#oldbottom"
- }
- ]
- },
- "7218": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#ignoreflexminwidthheightreset"
- }
- ]
- },
- "7219": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveminwidth"
- }
- ]
- },
- "7220": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveminheight"
- }
- ]
- },
- "7221": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivewidth"
- }
- ]
- },
- "7222": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveheight"
- }
- ]
- },
- "7223": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivemargintop"
- }
- ]
- },
- "7224": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivemarginright"
- }
- ]
- },
- "7225": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivemarginbottom"
- }
- ]
- },
- "7226": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivemarginleft"
- }
- ]
- },
- "7227": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivepaddingtop"
- }
- ]
- },
- "7228": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivepaddingright"
- }
- ]
- },
- "7229": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivepaddingbottom"
- }
- ]
- },
- "7230": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivepaddingleft"
- }
- ]
- },
- "7231": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectivebordertopwidth"
- }
- ]
- },
- "7232": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveborderrightwidth"
- }
- ]
- },
- "7233": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveborderbottomwidth"
- }
- ]
- },
- "7234": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#effectiveborderleftwidth"
- }
- ]
- },
- "7235": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#defaultpaddingtop"
- }
- ]
- },
- "7236": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#defaultpaddingright"
- }
- ]
- },
- "7237": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#defaultpaddingbottom"
- }
- ]
- },
- "7238": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#defaultpaddingleft"
- }
- ]
- },
- "7239": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ActivityIndicator#ispaddingrelative"
- }
- ]
- },
- "7241": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ActivityIndicator#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ActivityIndicator#reusable"
- }
- ]
- },
- "7242": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ActivityIndicator#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "7246": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ActivityIndicator#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "7250": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ActivityIndicator#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7252": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ActivityIndicator#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "7256": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ActivityIndicator#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "7258": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ActivityIndicator#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7262": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ActivityIndicator#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "7266": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ActivityIndicator#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "7270": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ActivityIndicator#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ActivityIndicator#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "7272": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ActivityIndicator#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7274": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ActivityIndicator#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7278": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ActivityIndicator#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7280": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ActivityIndicator#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7282": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ActivityIndicator#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7285": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ActivityIndicator#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7288": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ActivityIndicator#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "7294": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ActivityIndicator#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7296": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ActivityIndicator#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7298": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ActivityIndicator#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7301": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ActivityIndicator#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7304": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ActivityIndicator#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7308": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ActivityIndicator#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7311": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ActivityIndicator#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7315": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ActivityIndicator#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7319": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ActivityIndicator#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7322": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ActivityIndicator#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "7324": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ActivityIndicator#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7327": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ActivityIndicator#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7330": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ActivityIndicator#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7333": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ActivityIndicator#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "7335": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ActivityIndicator#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7337": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ActivityIndicator#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7339": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ActivityIndicator#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7344": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ActivityIndicator#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7347": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ActivityIndicator#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7350": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ActivityIndicator#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7353": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ActivityIndicator#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "7356": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ActivityIndicator#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7360": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ActivityIndicator#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7363": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ActivityIndicator#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7367": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ActivityIndicator#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7370": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ActivityIndicator#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7373": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ActivityIndicator#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7375": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ActivityIndicator#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7379": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ActivityIndicator#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7382": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ActivityIndicator#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7384": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ActivityIndicator#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7387": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ActivityIndicator#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "7390": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ActivityIndicator#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7394": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ActivityIndicator#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7402": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ActivityIndicator#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7406": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ActivityIndicator#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7411": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ActivityIndicator#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7414": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ActivityIndicator#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "7419": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ActivityIndicator#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ActivityIndicator#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ActivityIndicator.md b/content/api/class/ActivityIndicator.md
deleted file mode 100644
index fd1c5e9f..00000000
--- a/content/api/class/ActivityIndicator.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: ActivityIndicator
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ActivityIndicator'
-layout: api
-seo:
- description: "Represents a UI widget which displays a progress indicator hinting the user for some background operation running."
----
-
-
-
-
-
-
-activityCreatedEvent: "activityCreated" = 'activityCreated'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 12,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityCreatedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitycreatedevent-1"
- }
- ]
- },
- "2873": {
- "name": "activityDestroyedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitydestroyedevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityDestroyedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityDestroyedEvent: "activityDestroyed" = 'activityDestroyed'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 16,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityDestroyedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitydestroyedevent-1"
- }
- ]
- },
- "2874": {
- "name": "activityStartedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitystartedevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityStartedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityStartedEvent: "activityStarted" = 'activityStarted'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 20,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityStartedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitystartedevent-1"
- }
- ]
- },
- "2875": {
- "name": "activityPausedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitypausedevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityPausedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityPausedEvent: "activityPaused" = 'activityPaused'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 24,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityPausedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitypausedevent-1"
- }
- ]
- },
- "2876": {
- "name": "activityResumedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activityresumedevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityResumedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityResumedEvent: "activityResumed" = 'activityResumed'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 28,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityResumedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activityresumedevent-1"
- }
- ]
- },
- "2877": {
- "name": "activityStoppedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitystoppedevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityStoppedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityStoppedEvent: "activityStopped" = 'activityStopped'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 32,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityStoppedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitystoppedevent-1"
- }
- ]
- },
- "2878": {
- "name": "saveActivityStateEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#saveactivitystateevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.saveActivityStateEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "saveActivityStateEvent: "saveActivityState" = 'saveActivityState'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 36,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.saveActivityStateEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#saveactivitystateevent-1"
- }
- ]
- },
- "2879": {
- "name": "activityResultEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activityresultevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityResultEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityResultEvent: "activityResult" = 'activityResult'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 40,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityResultEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activityresultevent-1"
- }
- ]
- },
- "2880": {
- "name": "activityBackPressedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitybackpressedevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityBackPressedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityBackPressedEvent: "activityBackPressed" = 'activityBackPressed'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 44,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityBackPressedEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitybackpressedevent-1"
- }
- ]
- },
- "2881": {
- "name": "activityNewIntentEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitynewintentevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityNewIntentEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityNewIntentEvent: "activityNewIntent" = 'activityNewIntent'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 48,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityNewIntentEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activitynewintentevent-1"
- }
- ]
- },
- "2882": {
- "name": "activityRequestPermissionsEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activityrequestpermissionsevent-1",
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityRequestPermissionsEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityRequestPermissionsEvent: "activityRequestPermissions" = 'activityRequestPermissions'",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 52,
- "character": 17
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.android.activityRequestPermissionsEvent`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "url": "/api/class/AndroidApplication#activityrequestpermissionsevent-1"
- }
- ]
- },
- "2883": {
- "name": "on",
- "type": "Property",
- "url": "/api/class/AndroidApplication#on",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/ApplicationCommon#on-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "on: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 88,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/ApplicationCommon#on-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#on"
- }
- ]
- },
- "2990": {
- "name": "once",
- "type": "Property",
- "url": "/api/class/AndroidApplication#once-1",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/ApplicationCommon#once-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "once: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 92,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/ApplicationCommon#once-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#once-1"
- }
- ]
- },
- "3097": {
- "name": "off",
- "type": "Property",
- "url": "/api/class/AndroidApplication#off-1",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "off: (eventNames: string, callback?: any, thisArg?: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 96,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#off-1"
- }
- ]
- },
- "3103": {
- "name": "notify",
- "type": "Property",
- "url": "/api/class/AndroidApplication#notify-1",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "notify: (eventData: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 100,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#notify-1"
- }
- ]
- },
- "3108": {
- "name": "hasListeners",
- "type": "Property",
- "url": "/api/class/AndroidApplication#haslisteners-1",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "hasListeners: (eventName: string) => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 104,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#haslisteners-1"
- }
- ]
- },
- "3114": {
- "name": "activityCreatedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitycreatedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityCreatedEvent: "activityCreated" = AndroidApplication.activityCreatedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 54,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitycreatedevent"
- }
- ]
- },
- "3115": {
- "name": "activityDestroyedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitydestroyedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityDestroyedEvent: "activityDestroyed" = AndroidApplication.activityDestroyedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 55,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitydestroyedevent"
- }
- ]
- },
- "3116": {
- "name": "activityStartedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitystartedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityStartedEvent: "activityStarted" = AndroidApplication.activityStartedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 56,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitystartedevent"
- }
- ]
- },
- "3117": {
- "name": "activityPausedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitypausedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityPausedEvent: "activityPaused" = AndroidApplication.activityPausedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 57,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitypausedevent"
- }
- ]
- },
- "3118": {
- "name": "activityResumedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activityresumedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityResumedEvent: "activityResumed" = AndroidApplication.activityResumedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 58,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activityresumedevent"
- }
- ]
- },
- "3119": {
- "name": "activityStoppedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitystoppedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityStoppedEvent: "activityStopped" = AndroidApplication.activityStoppedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 59,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitystoppedevent"
- }
- ]
- },
- "3120": {
- "name": "saveActivityStateEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#saveactivitystateevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "saveActivityStateEvent: "saveActivityState" = AndroidApplication.saveActivityStateEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 60,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#saveactivitystateevent"
- }
- ]
- },
- "3121": {
- "name": "activityResultEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activityresultevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityResultEvent: "activityResult" = AndroidApplication.activityResultEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 61,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activityresultevent"
- }
- ]
- },
- "3122": {
- "name": "activityBackPressedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitybackpressedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityBackPressedEvent: "activityBackPressed" = AndroidApplication.activityBackPressedEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 62,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitybackpressedevent"
- }
- ]
- },
- "3123": {
- "name": "activityNewIntentEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activitynewintentevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityNewIntentEvent: "activityNewIntent" = AndroidApplication.activityNewIntentEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 63,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activitynewintentevent"
- }
- ]
- },
- "3124": {
- "name": "activityRequestPermissionsEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#activityrequestpermissionsevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "activityRequestPermissionsEvent: "activityRequestPermissions" = AndroidApplication.activityRequestPermissionsEvent",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 64,
- "character": 10
- }
- ],
- "url": "/api/class/AndroidApplication#activityrequestpermissionsevent"
- }
- ]
- },
- "3125": {
- "name": "getNativeApplication",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getnativeapplication",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getNativeApplication(): Application",
- "url": "/api/class/AndroidApplication#getnativeapplication-getnativeapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 66,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "Application"
- }
- ]
- },
- "3130": {
- "name": "nativeApp",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#nativeapp",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeApp(): Application",
- "url": "/api/class/AndroidApplication#nativeapp-nativeapp-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 76,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The [android Application](http://developer.android.com/reference/android/app/Application.html) object instance provided to the init of the module."
- }
- ]
- },
- "parameters": [],
- "returns": "Application"
- }
- ]
- },
- "3132": {
- "name": "packageName",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#packagename",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get packageName(): string",
- "url": "/api/class/AndroidApplication#packagename-packagename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 81,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Utils.android.getPackageName()`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "3134": {
- "name": "startActivity",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#startactivity",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get startActivity(): AppCompatActivity",
- "url": "/api/class/AndroidApplication#startactivity-startactivity-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 86,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The main (start) Activity for the application."
- }
- ]
- },
- "parameters": [],
- "returns": "AppCompatActivity"
- }
- ]
- },
- "3136": {
- "name": "foregroundActivity",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#foregroundactivity",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get foregroundActivity(): AppCompatActivity",
- "url": "/api/class/AndroidApplication#foregroundactivity-foregroundactivity-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 93,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The currently active (loaded) [android Activity](http://developer.android.com/reference/android/app/Activity.html).\n\nThis property is automatically updated upon Activity events."
- }
- ]
- },
- "parameters": [],
- "returns": "AppCompatActivity"
- }
- ]
- },
- "3138": {
- "name": "context",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#context",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get context(): Context",
- "url": "/api/class/AndroidApplication#context-context-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 98,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Utils.android.getApplicationContext()`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "Context"
- }
- ]
- },
- "3140": {
- "name": "backgrounded",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#backgrounded",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgrounded(): boolean",
- "url": "/api/class/AndroidApplication#backgrounded-backgrounded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.inBackground`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "3142": {
- "name": "paused",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#paused",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get paused(): boolean",
- "url": "/api/class/AndroidApplication#paused-paused-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 108,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use "
- },
- {
- "kind": "code",
- "text": "`Application.suspended`"
- },
- {
- "kind": "text",
- "text": " instead."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "3144": {
- "name": "registerBroadcastReceiver",
- "type": "Method",
- "url": "/api/class/AndroidApplication#registerbroadcastreceiver",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "registerBroadcastReceiver(\n intentFilter: string,\n onReceiveCallback: (context: Context, intent: Intent) => void\n): void",
- "url": "/api/class/AndroidApplication#registerbroadcastreceiver-registerbroadcastreceiver-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 116,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Register a BroadcastReceiver to be run in the main activity thread. The receiver will be called with any broadcast Intent that matches filter, in the main application thread.\nFor more information, please visit 'http://developer.android.com/reference/android/content/Context.html#registerReceiver%28android.content.BroadcastReceiver,%20android.content.IntentFilter%29'"
- }
- ]
- },
- "parameters": [
- {
- "name": "intentFilter",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A string containing the intent filter."
- }
- ]
- }
- },
- {
- "name": "onReceiveCallback",
- "type": "(context: Context, intent: Intent) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A callback function that will be called each time the receiver receives a broadcast."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3152": {
- "name": "unregisterBroadcastReceiver",
- "type": "Method",
- "url": "/api/class/AndroidApplication#unregisterbroadcastreceiver",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unregisterBroadcastReceiver(intentFilter: string): void",
- "url": "/api/class/AndroidApplication#unregisterbroadcastreceiver-unregisterbroadcastreceiver-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 123,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unregister a previously registered BroadcastReceiver.\nFor more information, please visit 'http://developer.android.com/reference/android/content/Context.html#unregisterReceiver(android.content.BroadcastReceiver)'"
- }
- ]
- },
- "parameters": [
- {
- "name": "intentFilter",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A string containing the intent filter with which the receiver was originally registered."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3155": {
- "name": "getRegisteredBroadcastReceiver",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getregisteredbroadcastreceiver",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getRegisteredBroadcastReceiver(intentFilter: string): BroadcastReceiver",
- "url": "/api/class/AndroidApplication#getregisteredbroadcastreceiver-getregisteredbroadcastreceiver-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 129,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Get a registered BroadcastReceiver, then you can get the result code of BroadcastReceiver in onReceiveCallback method."
- }
- ]
- },
- "parameters": [
- {
- "name": "intentFilter",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A string containing the intent filter."
- }
- ]
- }
- }
- ],
- "returns": "BroadcastReceiver"
- }
- ]
- },
- "3158": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/AndroidApplication#on-1",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityCreated",\n callback: (args: AndroidActivityBundleEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 131,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "event",
- "type": "\"activityCreated\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityBundleEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityDestroyed",\n callback: (args: AndroidActivityEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 132,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when application css is changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityDestroyed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityStarted",\n callback: (args: AndroidActivityEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 133,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Event raised then livesync operation is performed."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityStarted\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityPaused",\n callback: (args: AndroidActivityEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 134,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when application css is changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityPaused\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityResumed",\n callback: (args: AndroidActivityEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 135,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised on application launchEvent."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityResumed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityStopped",\n callback: (args: AndroidActivityEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-7",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 136,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised after the application has performed most of its startup actions.\nIts intent is to be suitable for measuring app startup times."
- }
- ],
- "modifierTags": [
- "@experimental"
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityStopped\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "saveActivityState",\n callback: (args: AndroidActivityBundleEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 137,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when the Application is suspended."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"saveActivityState\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityBundleEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityResult",\n callback: (args: AndroidActivityResultEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-9",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 138,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when the Application is resumed after it has been suspended."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityResult\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityResultEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityBackPressed",\n callback: (args: AndroidActivityBackPressedEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-10",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 139,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when the Application is about to exit."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityBackPressedEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityNewIntent",\n callback: (args: AndroidActivityNewIntentEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-11",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 140,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when there is low memory on the target device."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityNewIntent\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityNewIntentEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "activityRequestPermissions",\n callback: (args: AndroidActivityRequestPermissionsEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/AndroidApplication#on-1-on-12",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 141,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This event is raised when an uncaught error occurs while the application is running."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"activityRequestPermissions\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: AndroidActivityRequestPermissionsEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3236": {
- "name": "launchEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#launchevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "launchEvent",
- "url": "/api/class/ApplicationCommon#launchevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "launchEvent: "launch" = "launch"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 69,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "launchEvent",
- "url": "/api/class/ApplicationCommon#launchevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#launchevent"
- }
- ]
- },
- "3237": {
- "name": "suspendEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#suspendevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "suspendEvent",
- "url": "/api/class/ApplicationCommon#suspendevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "suspendEvent: "suspend" = "suspend"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 70,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "suspendEvent",
- "url": "/api/class/ApplicationCommon#suspendevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#suspendevent"
- }
- ]
- },
- "3238": {
- "name": "displayedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#displayedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "displayedEvent",
- "url": "/api/class/ApplicationCommon#displayedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "displayedEvent: "displayed" = "displayed"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 71,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "displayedEvent",
- "url": "/api/class/ApplicationCommon#displayedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#displayedevent"
- }
- ]
- },
- "3239": {
- "name": "backgroundEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#backgroundevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "backgroundEvent",
- "url": "/api/class/ApplicationCommon#backgroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "backgroundEvent: "background" = "background"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 72,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "backgroundEvent",
- "url": "/api/class/ApplicationCommon#backgroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#backgroundevent"
- }
- ]
- },
- "3240": {
- "name": "foregroundEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#foregroundevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "foregroundEvent",
- "url": "/api/class/ApplicationCommon#foregroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "foregroundEvent: "foreground" = "foreground"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 73,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "foregroundEvent",
- "url": "/api/class/ApplicationCommon#foregroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#foregroundevent"
- }
- ]
- },
- "3241": {
- "name": "resumeEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#resumeevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "resumeEvent",
- "url": "/api/class/ApplicationCommon#resumeevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "resumeEvent: "resume" = "resume"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 74,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "resumeEvent",
- "url": "/api/class/ApplicationCommon#resumeevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#resumeevent"
- }
- ]
- },
- "3242": {
- "name": "exitEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#exitevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "exitEvent",
- "url": "/api/class/ApplicationCommon#exitevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "exitEvent: "exit" = "exit"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 75,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "exitEvent",
- "url": "/api/class/ApplicationCommon#exitevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#exitevent"
- }
- ]
- },
- "3243": {
- "name": "lowMemoryEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#lowmemoryevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "lowMemoryEvent",
- "url": "/api/class/ApplicationCommon#lowmemoryevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "lowMemoryEvent: "lowMemory" = "lowMemory"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 76,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "lowMemoryEvent",
- "url": "/api/class/ApplicationCommon#lowmemoryevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#lowmemoryevent"
- }
- ]
- },
- "3244": {
- "name": "uncaughtErrorEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#uncaughterrorevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "uncaughtErrorEvent",
- "url": "/api/class/ApplicationCommon#uncaughterrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "uncaughtErrorEvent: "uncaughtError" = "uncaughtError"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 77,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "uncaughtErrorEvent",
- "url": "/api/class/ApplicationCommon#uncaughterrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#uncaughterrorevent"
- }
- ]
- },
- "3245": {
- "name": "discardedErrorEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#discardederrorevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "discardedErrorEvent",
- "url": "/api/class/ApplicationCommon#discardederrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "discardedErrorEvent: "discardedError" = "discardedError"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 78,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "discardedErrorEvent",
- "url": "/api/class/ApplicationCommon#discardederrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#discardederrorevent"
- }
- ]
- },
- "3246": {
- "name": "orientationChangedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#orientationchangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "orientationChangedEvent",
- "url": "/api/class/ApplicationCommon#orientationchangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "orientationChangedEvent: "orientationChanged" = "orientationChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 79,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "orientationChangedEvent",
- "url": "/api/class/ApplicationCommon#orientationchangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#orientationchangedevent"
- }
- ]
- },
- "3247": {
- "name": "systemAppearanceChangedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#systemappearancechangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "systemAppearanceChangedEvent",
- "url": "/api/class/ApplicationCommon#systemappearancechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "systemAppearanceChangedEvent: "systemAppearanceChanged" = "systemAppearanceChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 80,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "systemAppearanceChangedEvent",
- "url": "/api/class/ApplicationCommon#systemappearancechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#systemappearancechangedevent"
- }
- ]
- },
- "3248": {
- "name": "fontScaleChangedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#fontscalechangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "fontScaleChangedEvent",
- "url": "/api/class/ApplicationCommon#fontscalechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "fontScaleChangedEvent: "fontScaleChanged" = "fontScaleChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 81,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "fontScaleChangedEvent",
- "url": "/api/class/ApplicationCommon#fontscalechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#fontscalechangedevent"
- }
- ]
- },
- "3249": {
- "name": "livesyncEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#livesyncevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "livesyncEvent",
- "url": "/api/class/ApplicationCommon#livesyncevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "livesyncEvent: "livesync" = "livesync"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 82,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "livesyncEvent",
- "url": "/api/class/ApplicationCommon#livesyncevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#livesyncevent"
- }
- ]
- },
- "3250": {
- "name": "loadAppCssEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#loadappcssevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "loadAppCssEvent",
- "url": "/api/class/ApplicationCommon#loadappcssevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "loadAppCssEvent: "loadAppCss" = "loadAppCss"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 83,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "loadAppCssEvent",
- "url": "/api/class/ApplicationCommon#loadappcssevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#loadappcssevent"
- }
- ]
- },
- "3251": {
- "name": "cssChangedEvent",
- "type": "Property",
- "url": "/api/class/AndroidApplication#csschangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "cssChangedEvent",
- "url": "/api/class/ApplicationCommon#csschangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "cssChangedEvent: "cssChanged" = "cssChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 84,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "cssChangedEvent",
- "url": "/api/class/ApplicationCommon#csschangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#csschangedevent"
- }
- ]
- },
- "3252": {
- "name": "once",
- "type": "Property",
- "url": "/api/class/AndroidApplication#once",
- "flags": {},
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/ApplicationCommon#once",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "once: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/ApplicationCommon#once",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#once"
- }
- ]
- },
- "3359": {
- "name": "off",
- "type": "Property",
- "url": "/api/class/AndroidApplication#off",
- "flags": {},
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "off: (eventNames: string, callback?: any, thisArg?: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 107,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#off"
- }
- ]
- },
- "3365": {
- "name": "notify",
- "type": "Property",
- "url": "/api/class/AndroidApplication#notify",
- "flags": {},
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "notify: (eventData: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 108,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#notify"
- }
- ]
- },
- "3370": {
- "name": "hasListeners",
- "type": "Property",
- "url": "/api/class/AndroidApplication#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "hasListeners: (eventName: string) => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 109,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#haslisteners"
- }
- ]
- },
- "3378": {
- "name": "applyCssClass",
- "type": "Method",
- "url": "/api/class/AndroidApplication#applycssclass",
- "flags": {},
- "inheritedFrom": {
- "name": "applyCssClass",
- "url": "/api/class/ApplicationCommon#applycssclass",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "applyCssClass(rootView: View, cssClasses: string[], newCssClass: string): void",
- "url": "/api/class/AndroidApplication#applycssclass-applycssclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "applyCssClass",
- "url": "/api/class/ApplicationCommon#applycssclass",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Applies the the "
- },
- {
- "kind": "code",
- "text": "`newCssClass`"
- },
- {
- "kind": "text",
- "text": " to the "
- },
- {
- "kind": "code",
- "text": "`rootView`"
- },
- {
- "kind": "text",
- "text": " and removes all other css classes from "
- },
- {
- "kind": "code",
- "text": "`cssClasses`"
- },
- {
- "kind": "text",
- "text": "\npreviously applied to the "
- },
- {
- "kind": "code",
- "text": "`rootView`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssClasses",
- "type": "string[]",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "newCssClass",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3383": {
- "name": "setMaxRefreshRate",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setmaxrefreshrate",
- "flags": {},
- "inheritedFrom": {
- "name": "setMaxRefreshRate",
- "url": "/api/class/ApplicationCommon#setmaxrefreshrate",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMaxRefreshRate(options?: { max?: number; min?: number }): void",
- "url": "/api/class/AndroidApplication#setmaxrefreshrate-setmaxrefreshrate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 143,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setMaxRefreshRate",
- "url": "/api/class/ApplicationCommon#setmaxrefreshrate",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only\nDynamically change the preferred frame rate\nFor devices (iOS 15+) which support min/max/preferred frame rate you can specify ranges\nFor devices (iOS < 15), you can specify the max frame rate\nsee: https://developer.apple.com/documentation/quartzcore/optimizing_promotion_refresh_rates_for_iphone_13_pro_and_ipad_pro\nTo use, ensure your Info.plist has:\n"
- },
- {
- "kind": "code",
- "text": "```xml\n mainEntry: NavigationEntry",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 148,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "name": "mainEntry",
- "url": "/api/class/ApplicationCommon#mainentry",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#mainentry"
- }
- ]
- },
- "3391": {
- "name": "getMainEntry",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getmainentry",
- "flags": {},
- "inheritedFrom": {
- "name": "getMainEntry",
- "url": "/api/class/ApplicationCommon#getmainentry",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMainEntry(): NavigationEntry",
- "url": "/api/class/AndroidApplication#getmainentry-getmainentry-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 152,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getMainEntry",
- "url": "/api/class/ApplicationCommon#getmainentry",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "The main entry of the application"
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "NavigationEntry"
- }
- ]
- },
- "3393": {
- "name": "notifyLaunch",
- "type": "Method",
- "url": "/api/class/AndroidApplication#notifylaunch",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "notifyLaunch",
- "url": "/api/class/ApplicationCommon#notifylaunch",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyLaunch(additionalLanchEventData?: any): View",
- "url": "/api/class/AndroidApplication#notifylaunch-notifylaunch-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 153,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notifyLaunch",
- "url": "/api/class/ApplicationCommon#notifylaunch",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "additionalLanchEventData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "3396": {
- "name": "createRootView",
- "type": "Method",
- "url": "/api/class/AndroidApplication#createrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "createRootView",
- "url": "/api/class/ApplicationCommon#createrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createRootView(view?: View, fireLaunchEvent?: boolean, additionalLanchEventData?: any): View",
- "url": "/api/class/AndroidApplication#createrootview-createrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "createRootView",
- "url": "/api/class/ApplicationCommon#createrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "fireLaunchEvent",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "additionalLanchEventData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "3401": {
- "name": "getRootView",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "getRootView",
- "url": "/api/class/ApplicationCommon#getrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getRootView(): View",
- "url": "/api/class/AndroidApplication#getrootview-getrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getRootView",
- "url": "/api/class/ApplicationCommon#getrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "3403": {
- "name": "resetRootView",
- "type": "Method",
- "url": "/api/class/AndroidApplication#resetrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "resetRootView",
- "url": "/api/class/ApplicationCommon#resetrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetRootView(entry?: string | NavigationEntry): void",
- "url": "/api/class/AndroidApplication#resetrootview-resetrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 156,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "resetRootView",
- "url": "/api/class/ApplicationCommon#resetrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3406": {
- "name": "initRootView",
- "type": "Method",
- "url": "/api/class/AndroidApplication#initrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "initRootView",
- "url": "/api/class/ApplicationCommon#initrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initRootView(rootView: View): void",
- "url": "/api/class/AndroidApplication#initrootview-initrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 157,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "initRootView",
- "url": "/api/class/ApplicationCommon#initrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3409": {
- "name": "getResources",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getresources",
- "flags": {},
- "inheritedFrom": {
- "name": "getResources",
- "url": "/api/class/ApplicationCommon#getresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getResources(): any",
- "url": "/api/class/AndroidApplication#getresources-getresources-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 161,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getResources",
- "url": "/api/class/ApplicationCommon#getresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Get application level static resources."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "3411": {
- "name": "setResources",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setresources",
- "flags": {},
- "inheritedFrom": {
- "name": "setResources",
- "url": "/api/class/ApplicationCommon#setresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setResources(res: any): void",
- "url": "/api/class/AndroidApplication#setresources-setresources-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 165,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setResources",
- "url": "/api/class/ApplicationCommon#setresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set application level static resources."
- }
- ]
- },
- "parameters": [
- {
- "name": "res",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3414": {
- "name": "setCssFileName",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setcssfilename",
- "flags": {},
- "inheritedFrom": {
- "name": "setCssFileName",
- "url": "/api/class/ApplicationCommon#setcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setCssFileName(cssFileName: string): void",
- "url": "/api/class/AndroidApplication#setcssfilename-setcssfilename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 170,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setCssFileName",
- "url": "/api/class/ApplicationCommon#setcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets css file name for the application."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3417": {
- "name": "getCssFileName",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getcssfilename",
- "flags": {},
- "inheritedFrom": {
- "name": "getCssFileName",
- "url": "/api/class/ApplicationCommon#getcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCssFileName(): string",
- "url": "/api/class/AndroidApplication#getcssfilename-getcssfilename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 174,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getCssFileName",
- "url": "/api/class/ApplicationCommon#getcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets css file name for the application."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "3419": {
- "name": "loadAppCss",
- "type": "Method",
- "url": "/api/class/AndroidApplication#loadappcss",
- "flags": {},
- "inheritedFrom": {
- "name": "loadAppCss",
- "url": "/api/class/ApplicationCommon#loadappcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadAppCss(): void",
- "url": "/api/class/AndroidApplication#loadappcss-loadappcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "loadAppCss",
- "url": "/api/class/ApplicationCommon#loadappcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Loads immediately the app.css.\nBy default the app.css file is loaded shortly after \"loaded\".\nFor the Android snapshot the CSS can be parsed during the snapshot generation,\nas the CSS does not depend on runtime APIs, and loadAppCss will be called explicitly."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "3421": {
- "name": "addCss",
- "type": "Method",
- "url": "/api/class/AndroidApplication#addcss",
- "flags": {},
- "inheritedFrom": {
- "name": "addCss",
- "url": "/api/class/ApplicationCommon#addcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addCss(cssText: string, attributeScoped?: boolean): void",
- "url": "/api/class/AndroidApplication#addcss-addcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 182,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addCss",
- "url": "/api/class/ApplicationCommon#addcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "cssText",
- "type": "string",
- "flags": {}
- },
- {
- "name": "attributeScoped",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3425": {
- "name": "run",
- "type": "Method",
- "url": "/api/class/AndroidApplication#run",
- "flags": {},
- "inheritedFrom": {
- "name": "run",
- "url": "/api/class/ApplicationCommon#run",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "run(entry?: string | NavigationEntry): void",
- "url": "/api/class/AndroidApplication#run-run-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 183,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "run",
- "url": "/api/class/ApplicationCommon#run",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3428": {
- "name": "getOrientation",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getorientation",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "getOrientation",
- "url": "/api/class/ApplicationCommon#getorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getOrientation(): "portrait" | "landscape" | "unknown"",
- "url": "/api/class/AndroidApplication#getorientation-getorientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getOrientation",
- "url": "/api/class/ApplicationCommon#getorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"portrait\" | \"landscape\" | \"unknown\""
- }
- ]
- },
- "3430": {
- "name": "setOrientation",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setorientation",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "setOrientation",
- "url": "/api/class/ApplicationCommon#setorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOrientation(value: "portrait" | "landscape" | "unknown"): void",
- "url": "/api/class/AndroidApplication#setorientation-setorientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setOrientation",
- "url": "/api/class/ApplicationCommon#setorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "\"portrait\" | \"landscape\" | \"unknown\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3433": {
- "name": "orientation",
- "type": "Method",
- "url": "/api/class/AndroidApplication#orientation",
- "flags": {},
- "inheritedFrom": {
- "name": "orientation",
- "url": "/api/class/ApplicationCommon#orientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "orientation(): "portrait" | "landscape" | "unknown"",
- "url": "/api/class/AndroidApplication#orientation-orientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "orientation",
- "url": "/api/class/ApplicationCommon#orientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"portrait\" | \"landscape\" | \"unknown\""
- }
- ]
- },
- "3435": {
- "name": "orientationChanged",
- "type": "Method",
- "url": "/api/class/AndroidApplication#orientationchanged",
- "flags": {},
- "inheritedFrom": {
- "name": "orientationChanged",
- "url": "/api/class/ApplicationCommon#orientationchanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "orientationChanged(rootView: View, newOrientation: \"portrait\" | \"landscape\" | \"unknown\"): void",
- "url": "/api/class/AndroidApplication#orientationchanged-orientationchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "orientationChanged",
- "url": "/api/class/ApplicationCommon#orientationchanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {}
- },
- {
- "name": "newOrientation",
- "type": "\"portrait\" | \"landscape\" | \"unknown\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3439": {
- "name": "hasLaunched",
- "type": "Method",
- "url": "/api/class/AndroidApplication#haslaunched",
- "flags": {},
- "inheritedFrom": {
- "name": "hasLaunched",
- "url": "/api/class/ApplicationCommon#haslaunched",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasLaunched(): boolean",
- "url": "/api/class/AndroidApplication#haslaunched-haslaunched-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasLaunched",
- "url": "/api/class/ApplicationCommon#haslaunched",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "3441": {
- "name": "getSystemAppearance",
- "type": "Method",
- "url": "/api/class/AndroidApplication#getsystemappearance",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "getSystemAppearance",
- "url": "/api/class/ApplicationCommon#getsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSystemAppearance(): "dark" | "light"",
- "url": "/api/class/AndroidApplication#getsystemappearance-getsystemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 192,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getSystemAppearance",
- "url": "/api/class/ApplicationCommon#getsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "3443": {
- "name": "setSystemAppearance",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setsystemappearance",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "setSystemAppearance",
- "url": "/api/class/ApplicationCommon#setsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSystemAppearance(value: "dark" | "light"): void",
- "url": "/api/class/AndroidApplication#setsystemappearance-setsystemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 193,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setSystemAppearance",
- "url": "/api/class/ApplicationCommon#setsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "\"dark\" | \"light\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3446": {
- "name": "systemAppearance",
- "type": "Method",
- "url": "/api/class/AndroidApplication#systemappearance",
- "flags": {},
- "inheritedFrom": {
- "name": "systemAppearance",
- "url": "/api/class/ApplicationCommon#systemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "systemAppearance(): "dark" | "light"",
- "url": "/api/class/AndroidApplication#systemappearance-systemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 194,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "systemAppearance",
- "url": "/api/class/ApplicationCommon#systemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "3448": {
- "name": "autoSystemAppearanceChanged",
- "type": "Property",
- "url": "/api/class/AndroidApplication#autosystemappearancechanged",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Boolean to enable/disable systemAppearanceChanged"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "autoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#autosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "autoSystemAppearanceChanged: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 198,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "autoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#autosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Boolean to enable/disable systemAppearanceChanged"
- }
- ]
- },
- "url": "/api/class/AndroidApplication#autosystemappearancechanged"
- }
- ]
- },
- "3449": {
- "name": "setAutoSystemAppearanceChanged",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setautosystemappearancechanged",
- "flags": {},
- "inheritedFrom": {
- "name": "setAutoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#setautosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setAutoSystemAppearanceChanged(value: boolean): void",
- "url": "/api/class/AndroidApplication#setautosystemappearancechanged-setautosystemappearancechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 202,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setAutoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#setautosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "enable/disable systemAppearanceChanged"
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3452": {
- "name": "systemAppearanceChanged",
- "type": "Method",
- "url": "/api/class/AndroidApplication#systemappearancechanged",
- "flags": {},
- "inheritedFrom": {
- "name": "systemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#systemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "systemAppearanceChanged(rootView: View, newSystemAppearance: \"dark\" | \"light\"): void",
- "url": "/api/class/AndroidApplication#systemappearancechanged-systemappearancechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "systemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#systemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates root view classes including those of modals"
- }
- ]
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the root view"
- }
- ]
- }
- },
- {
- "name": "newSystemAppearance",
- "type": "\"dark\" | \"light\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the new appearance change"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3456": {
- "name": "inBackground",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#inbackground",
- "flags": {},
- "inheritedFrom": {
- "name": "inBackground",
- "url": "/api/class/ApplicationCommon#inbackground",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get inBackground(): boolean",
- "url": "/api/class/AndroidApplication#inbackground-inbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "3458": {
- "name": "setInBackground",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setinbackground",
- "flags": {},
- "inheritedFrom": {
- "name": "setInBackground",
- "url": "/api/class/ApplicationCommon#setinbackground",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInBackground(value: boolean, additonalData?: any): void",
- "url": "/api/class/AndroidApplication#setinbackground-setinbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setInBackground",
- "url": "/api/class/ApplicationCommon#setinbackground",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "additonalData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3462": {
- "name": "suspended",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#suspended",
- "flags": {},
- "inheritedFrom": {
- "name": "suspended",
- "url": "/api/class/ApplicationCommon#suspended",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get suspended(): boolean",
- "url": "/api/class/AndroidApplication#suspended-suspended-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "3464": {
- "name": "setSuspended",
- "type": "Method",
- "url": "/api/class/AndroidApplication#setsuspended",
- "flags": {},
- "inheritedFrom": {
- "name": "setSuspended",
- "url": "/api/class/ApplicationCommon#setsuspended",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSuspended(value: boolean, additonalData?: any): void",
- "url": "/api/class/AndroidApplication#setsuspended-setsuspended-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setSuspended",
- "url": "/api/class/ApplicationCommon#setsuspended",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "additonalData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3468": {
- "name": "started",
- "type": "Property",
- "url": "/api/class/AndroidApplication#started",
- "flags": {},
- "inheritedFrom": {
- "name": "started",
- "url": "/api/class/ApplicationCommon#started",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "started: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "started",
- "url": "/api/class/ApplicationCommon#started",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/AndroidApplication#started"
- }
- ]
- },
- "3469": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#android",
- "flags": {},
- "inheritedFrom": {
- "name": "android",
- "url": "/api/class/ApplicationCommon#android",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): AndroidApplication",
- "url": "/api/class/AndroidApplication#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "AndroidApplication"
- }
- ]
- },
- "3471": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#ios",
- "flags": {},
- "inheritedFrom": {
- "name": "ios",
- "url": "/api/class/ApplicationCommon#ios",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): iOSApplication",
- "url": "/api/class/AndroidApplication#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "iOSApplication"
- }
- ]
- },
- "3473": {
- "name": "AndroidApplication",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#androidapplication",
- "flags": {},
- "inheritedFrom": {
- "name": "AndroidApplication",
- "url": "/api/class/ApplicationCommon#androidapplication",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get AndroidApplication(): AndroidApplication",
- "url": "/api/class/AndroidApplication#androidapplication-androidapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "AndroidApplication"
- }
- ]
- },
- "3475": {
- "name": "iOSApplication",
- "type": "Accessor",
- "url": "/api/class/AndroidApplication#iosapplication",
- "flags": {},
- "inheritedFrom": {
- "name": "iOSApplication",
- "url": "/api/class/ApplicationCommon#iosapplication",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get iOSApplication(): iOSApplication",
- "url": "/api/class/AndroidApplication#iosapplication-iosapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "iOSApplication"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/AndroidApplication.md b/content/api/class/AndroidApplication.md
deleted file mode 100644
index 481761d5..00000000
--- a/content/api/class/AndroidApplication.md
+++ /dev/null
@@ -1,512 +0,0 @@
----
-title: AndroidApplication
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'AndroidApplication'
-layout: api
-seo:
- description: AndroidApplication
----
-
-
-
-
-
-
-play: (resetOnFinish?: boolean) => AnimationPromise",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/index.d.ts",
- "line": 146,
- "character": 8
- }
- ],
- "url": "/api/class/Animation#play"
- }
- ]
- },
- "7431": {
- "name": "cancel",
- "type": "Property",
- "url": "/api/class/Animation#cancel",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "cancel: () => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/index.d.ts",
- "line": 147,
- "character": 8
- }
- ],
- "url": "/api/class/Animation#cancel"
- }
- ]
- },
- "7434": {
- "name": "isPlaying",
- "type": "Property",
- "url": "/api/class/Animation#isplaying",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "isPlaying: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/index.d.ts",
- "line": 148,
- "character": 8
- }
- ],
- "url": "/api/class/Animation#isplaying"
- }
- ]
- },
- "7435": {
- "name": "_resolveAnimationCurve",
- "type": "Method",
- "url": "/api/class/Animation#resolveanimationcurve",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resolveAnimationCurve(curve: any): any",
- "url": "/api/class/Animation#resolveanimationcurve-resolveanimationcurve-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "curve",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Animation.md b/content/api/class/Animation.md
deleted file mode 100644
index f4f79222..00000000
--- a/content/api/class/Animation.md
+++ /dev/null
@@ -1,108 +0,0 @@
----
-title: Animation
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Animation'
-layout: api
-seo:
- description: "Defines a animation set."
----
-
-
-
-
-
-
-off: (eventNames: string, callback?: any, thisArg?: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 96,
- "character": 11
- }
- ],
- "url": "/api/class/ApplicationCommon#off-1"
- }
- ]
- },
- "4301": {
- "name": "notify",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#notify-1",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "notify: (eventData: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 100,
- "character": 11
- }
- ],
- "url": "/api/class/ApplicationCommon#notify-1"
- }
- ]
- },
- "4306": {
- "name": "hasListeners",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#haslisteners-1",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "hasListeners: (eventName: string) => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 104,
- "character": 11
- }
- ],
- "url": "/api/class/ApplicationCommon#haslisteners-1"
- }
- ]
- },
- "4312": {
- "name": "launchEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#launchevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "launchEvent: "launch" = "launch"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 69,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#launchevent"
- }
- ]
- },
- "4313": {
- "name": "suspendEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#suspendevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "suspendEvent: "suspend" = "suspend"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 70,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#suspendevent"
- }
- ]
- },
- "4314": {
- "name": "displayedEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#displayedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "displayedEvent: "displayed" = "displayed"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 71,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#displayedevent"
- }
- ]
- },
- "4315": {
- "name": "backgroundEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#backgroundevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "backgroundEvent: "background" = "background"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 72,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#backgroundevent"
- }
- ]
- },
- "4316": {
- "name": "foregroundEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#foregroundevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "foregroundEvent: "foreground" = "foreground"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 73,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#foregroundevent"
- }
- ]
- },
- "4317": {
- "name": "resumeEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#resumeevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "resumeEvent: "resume" = "resume"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 74,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#resumeevent"
- }
- ]
- },
- "4318": {
- "name": "exitEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#exitevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "exitEvent: "exit" = "exit"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 75,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#exitevent"
- }
- ]
- },
- "4319": {
- "name": "lowMemoryEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#lowmemoryevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "lowMemoryEvent: "lowMemory" = "lowMemory"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 76,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#lowmemoryevent"
- }
- ]
- },
- "4320": {
- "name": "uncaughtErrorEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#uncaughterrorevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "uncaughtErrorEvent: "uncaughtError" = "uncaughtError"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 77,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#uncaughterrorevent"
- }
- ]
- },
- "4321": {
- "name": "discardedErrorEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#discardederrorevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "discardedErrorEvent: "discardedError" = "discardedError"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 78,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#discardederrorevent"
- }
- ]
- },
- "4322": {
- "name": "orientationChangedEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#orientationchangedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "orientationChangedEvent: "orientationChanged" = "orientationChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 79,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#orientationchangedevent"
- }
- ]
- },
- "4323": {
- "name": "systemAppearanceChangedEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#systemappearancechangedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "systemAppearanceChangedEvent: "systemAppearanceChanged" = "systemAppearanceChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 80,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#systemappearancechangedevent"
- }
- ]
- },
- "4324": {
- "name": "fontScaleChangedEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#fontscalechangedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "fontScaleChangedEvent: "fontScaleChanged" = "fontScaleChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 81,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#fontscalechangedevent"
- }
- ]
- },
- "4325": {
- "name": "livesyncEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#livesyncevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "livesyncEvent: "livesync" = "livesync"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 82,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#livesyncevent"
- }
- ]
- },
- "4326": {
- "name": "loadAppCssEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#loadappcssevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "loadAppCssEvent: "loadAppCss" = "loadAppCss"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 83,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#loadappcssevent"
- }
- ]
- },
- "4327": {
- "name": "cssChangedEvent",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#csschangedevent",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssChangedEvent: "cssChanged" = "cssChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 84,
- "character": 13
- }
- ],
- "url": "/api/class/ApplicationCommon#csschangedevent"
- }
- ]
- },
- "4328": {
- "name": "on",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#on",
- "flags": {},
- "signatures": [
- {
- "code": "on: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 105,
- "character": 4
- }
- ],
- "url": "/api/class/ApplicationCommon#on"
- }
- ]
- },
- "4435": {
- "name": "once",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#once",
- "flags": {},
- "signatures": [
- {
- "code": "once: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "url": "/api/class/ApplicationCommon#once"
- }
- ]
- },
- "4542": {
- "name": "off",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#off",
- "flags": {},
- "signatures": [
- {
- "code": "off: (eventNames: string, callback?: any, thisArg?: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 107,
- "character": 4
- }
- ],
- "url": "/api/class/ApplicationCommon#off"
- }
- ]
- },
- "4548": {
- "name": "notify",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#notify",
- "flags": {},
- "signatures": [
- {
- "code": "notify: (eventData: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 108,
- "character": 4
- }
- ],
- "url": "/api/class/ApplicationCommon#notify"
- }
- ]
- },
- "4553": {
- "name": "hasListeners",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#haslisteners",
- "flags": {},
- "signatures": [
- {
- "code": "hasListeners: (eventName: string) => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 109,
- "character": 4
- }
- ],
- "url": "/api/class/ApplicationCommon#haslisteners"
- }
- ]
- },
- "4561": {
- "name": "applyCssClass",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#applycssclass",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "applyCssClass(rootView: View, cssClasses: string[], newCssClass: string): void",
- "url": "/api/class/ApplicationCommon#applycssclass-applycssclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Applies the the "
- },
- {
- "kind": "code",
- "text": "`newCssClass`"
- },
- {
- "kind": "text",
- "text": " to the "
- },
- {
- "kind": "code",
- "text": "`rootView`"
- },
- {
- "kind": "text",
- "text": " and removes all other css classes from "
- },
- {
- "kind": "code",
- "text": "`cssClasses`"
- },
- {
- "kind": "text",
- "text": "\npreviously applied to the "
- },
- {
- "kind": "code",
- "text": "`rootView`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssClasses",
- "type": "string[]",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "newCssClass",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4570": {
- "name": "setMaxRefreshRate",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setmaxrefreshrate",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMaxRefreshRate(options?: { max?: number; min?: number }): void",
- "url": "/api/class/ApplicationCommon#setmaxrefreshrate-setmaxrefreshrate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 143,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only\nDynamically change the preferred frame rate\nFor devices (iOS 15+) which support min/max/preferred frame rate you can specify ranges\nFor devices (iOS < 15), you can specify the max frame rate\nsee: https://developer.apple.com/documentation/quartzcore/optimizing_promotion_refresh_rates_for_iphone_13_pro_and_ipad_pro\nTo use, ensure your Info.plist has:\n"
- },
- {
- "kind": "code",
- "text": "```xml\n mainEntry: NavigationEntry",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 148,
- "character": 14
- }
- ],
- "url": "/api/class/ApplicationCommon#mainentry"
- }
- ]
- },
- "4578": {
- "name": "getMainEntry",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getmainentry",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMainEntry(): NavigationEntry",
- "url": "/api/class/ApplicationCommon#getmainentry-getmainentry-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 152,
- "character": 4
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "The main entry of the application"
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "NavigationEntry"
- }
- ]
- },
- "4580": {
- "name": "notifyLaunch",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#notifylaunch",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyLaunch(additionalLanchEventData?: any): View",
- "url": "/api/class/ApplicationCommon#notifylaunch-notifylaunch-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 153,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "additionalLanchEventData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "4583": {
- "name": "createRootView",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#createrootview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createRootView(view?: View, fireLaunchEvent?: boolean, additionalLanchEventData?: any): View",
- "url": "/api/class/ApplicationCommon#createrootview-createrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "fireLaunchEvent",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "additionalLanchEventData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "4588": {
- "name": "getRootView",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getrootview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getRootView(): View",
- "url": "/api/class/ApplicationCommon#getrootview-getrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "4590": {
- "name": "resetRootView",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#resetrootview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetRootView(entry?: string | NavigationEntry): void",
- "url": "/api/class/ApplicationCommon#resetrootview-resetrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 156,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4593": {
- "name": "initRootView",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#initrootview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initRootView(rootView: View): void",
- "url": "/api/class/ApplicationCommon#initrootview-initrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 157,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4596": {
- "name": "getResources",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getresources",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getResources(): any",
- "url": "/api/class/ApplicationCommon#getresources-getresources-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 161,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Get application level static resources."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "4598": {
- "name": "setResources",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setresources",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setResources(res: any): void",
- "url": "/api/class/ApplicationCommon#setresources-setresources-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 165,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set application level static resources."
- }
- ]
- },
- "parameters": [
- {
- "name": "res",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4602": {
- "name": "setCssFileName",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setcssfilename",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setCssFileName(cssFileName: string): void",
- "url": "/api/class/ApplicationCommon#setcssfilename-setcssfilename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 170,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets css file name for the application."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4605": {
- "name": "getCssFileName",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getcssfilename",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCssFileName(): string",
- "url": "/api/class/ApplicationCommon#getcssfilename-getcssfilename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 174,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets css file name for the application."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "4607": {
- "name": "loadAppCss",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#loadappcss",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadAppCss(): void",
- "url": "/api/class/ApplicationCommon#loadappcss-loadappcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Loads immediately the app.css.\nBy default the app.css file is loaded shortly after \"loaded\".\nFor the Android snapshot the CSS can be parsed during the snapshot generation,\nas the CSS does not depend on runtime APIs, and loadAppCss will be called explicitly."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "4609": {
- "name": "addCss",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#addcss",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addCss(cssText: string, attributeScoped?: boolean): void",
- "url": "/api/class/ApplicationCommon#addcss-addcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 182,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cssText",
- "type": "string",
- "flags": {}
- },
- {
- "name": "attributeScoped",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4613": {
- "name": "run",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#run",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "run(entry?: string | NavigationEntry): void",
- "url": "/api/class/ApplicationCommon#run-run-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 183,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4617": {
- "name": "getOrientation",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getorientation",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getOrientation(): "portrait" | "landscape" | "unknown"",
- "url": "/api/class/ApplicationCommon#getorientation-getorientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "\"portrait\" | \"landscape\" | \"unknown\""
- }
- ]
- },
- "4619": {
- "name": "setOrientation",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setorientation",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOrientation(value: "portrait" | "landscape" | "unknown"): void",
- "url": "/api/class/ApplicationCommon#setorientation-setorientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "\"portrait\" | \"landscape\" | \"unknown\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4622": {
- "name": "orientation",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#orientation",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "orientation(): "portrait" | "landscape" | "unknown"",
- "url": "/api/class/ApplicationCommon#orientation-orientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "\"portrait\" | \"landscape\" | \"unknown\""
- }
- ]
- },
- "4624": {
- "name": "orientationChanged",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#orientationchanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "orientationChanged(rootView: View, newOrientation: \"portrait\" | \"landscape\" | \"unknown\"): void",
- "url": "/api/class/ApplicationCommon#orientationchanged-orientationchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {}
- },
- {
- "name": "newOrientation",
- "type": "\"portrait\" | \"landscape\" | \"unknown\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4628": {
- "name": "getNativeApplication",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getnativeapplication",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getNativeApplication(): any",
- "url": "/api/class/ApplicationCommon#getnativeapplication-getnativeapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "4630": {
- "name": "hasLaunched",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#haslaunched",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasLaunched(): boolean",
- "url": "/api/class/ApplicationCommon#haslaunched-haslaunched-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "4633": {
- "name": "getSystemAppearance",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#getsystemappearance",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSystemAppearance(): "dark" | "light"",
- "url": "/api/class/ApplicationCommon#getsystemappearance-getsystemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 192,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "4635": {
- "name": "setSystemAppearance",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setsystemappearance",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSystemAppearance(value: "dark" | "light"): void",
- "url": "/api/class/ApplicationCommon#setsystemappearance-setsystemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 193,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "\"dark\" | \"light\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4638": {
- "name": "systemAppearance",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#systemappearance",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "systemAppearance(): "dark" | "light"",
- "url": "/api/class/ApplicationCommon#systemappearance-systemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 194,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "4640": {
- "name": "autoSystemAppearanceChanged",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#autosystemappearancechanged",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Boolean to enable/disable systemAppearanceChanged"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "autoSystemAppearanceChanged: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 198,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Boolean to enable/disable systemAppearanceChanged"
- }
- ]
- },
- "url": "/api/class/ApplicationCommon#autosystemappearancechanged"
- }
- ]
- },
- "4641": {
- "name": "setAutoSystemAppearanceChanged",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setautosystemappearancechanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setAutoSystemAppearanceChanged(value: boolean): void",
- "url": "/api/class/ApplicationCommon#setautosystemappearancechanged-setautosystemappearancechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 202,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "enable/disable systemAppearanceChanged"
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4644": {
- "name": "systemAppearanceChanged",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#systemappearancechanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "systemAppearanceChanged(rootView: View, newSystemAppearance: \"dark\" | \"light\"): void",
- "url": "/api/class/ApplicationCommon#systemappearancechanged-systemappearancechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates root view classes including those of modals"
- }
- ]
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the root view"
- }
- ]
- }
- },
- {
- "name": "newSystemAppearance",
- "type": "\"dark\" | \"light\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the new appearance change"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4649": {
- "name": "inBackground",
- "type": "Accessor",
- "url": "/api/class/ApplicationCommon#inbackground",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get inBackground(): boolean",
- "url": "/api/class/ApplicationCommon#inbackground-inbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "4651": {
- "name": "setInBackground",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setinbackground",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInBackground(value: boolean, additonalData?: any): void",
- "url": "/api/class/ApplicationCommon#setinbackground-setinbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "additonalData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4656": {
- "name": "suspended",
- "type": "Accessor",
- "url": "/api/class/ApplicationCommon#suspended",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get suspended(): boolean",
- "url": "/api/class/ApplicationCommon#suspended-suspended-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "4658": {
- "name": "setSuspended",
- "type": "Method",
- "url": "/api/class/ApplicationCommon#setsuspended",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSuspended(value: boolean, additonalData?: any): void",
- "url": "/api/class/ApplicationCommon#setsuspended-setsuspended-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "additonalData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4662": {
- "name": "started",
- "type": "Property",
- "url": "/api/class/ApplicationCommon#started",
- "flags": {},
- "signatures": [
- {
- "code": "started: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "url": "/api/class/ApplicationCommon#started"
- }
- ]
- },
- "4663": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/ApplicationCommon#android",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): AndroidApplication",
- "url": "/api/class/ApplicationCommon#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "AndroidApplication"
- }
- ]
- },
- "4665": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/ApplicationCommon#ios",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): iOSApplication",
- "url": "/api/class/ApplicationCommon#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "iOSApplication"
- }
- ]
- },
- "4667": {
- "name": "AndroidApplication",
- "type": "Accessor",
- "url": "/api/class/ApplicationCommon#androidapplication",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get AndroidApplication(): AndroidApplication",
- "url": "/api/class/ApplicationCommon#androidapplication-androidapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "AndroidApplication"
- }
- ]
- },
- "4669": {
- "name": "iOSApplication",
- "type": "Accessor",
- "url": "/api/class/ApplicationCommon#iosapplication",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get iOSApplication(): iOSApplication",
- "url": "/api/class/ApplicationCommon#iosapplication-iosapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "iOSApplication"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ApplicationCommon.md b/content/api/class/ApplicationCommon.md
deleted file mode 100644
index 7064ab4f..00000000
--- a/content/api/class/ApplicationCommon.md
+++ /dev/null
@@ -1,918 +0,0 @@
----
-title: ApplicationCommon
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ApplicationCommon'
-layout: api
-seo:
- description: ApplicationCommon
----
-
-
-
-
-
-
-image: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 22,
- "character": 4
- }
- ],
- "url": "/api/class/Background#image"
- }
- ]
- },
- "26119": {
- "name": "repeat",
- "type": "Property",
- "url": "/api/class/Background#repeat",
- "flags": {},
- "signatures": [
- {
- "code": "repeat: BackgroundRepeatType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 23,
- "character": 4
- }
- ],
- "url": "/api/class/Background#repeat"
- }
- ]
- },
- "26120": {
- "name": "position",
- "type": "Property",
- "url": "/api/class/Background#position",
- "flags": {},
- "signatures": [
- {
- "code": "position: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 24,
- "character": 4
- }
- ],
- "url": "/api/class/Background#position"
- }
- ]
- },
- "26121": {
- "name": "size",
- "type": "Property",
- "url": "/api/class/Background#size",
- "flags": {},
- "signatures": [
- {
- "code": "size: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 25,
- "character": 4
- }
- ],
- "url": "/api/class/Background#size"
- }
- ]
- },
- "26122": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Background#bordertopcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 26,
- "character": 4
- }
- ],
- "url": "/api/class/Background#bordertopcolor"
- }
- ]
- },
- "26123": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Background#borderrightcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 27,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderrightcolor"
- }
- ]
- },
- "26124": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Background#borderbottomcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 28,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderbottomcolor"
- }
- ]
- },
- "26125": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Background#borderleftcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderleftcolor"
- }
- ]
- },
- "26126": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Background#bordertopwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "url": "/api/class/Background#bordertopwidth"
- }
- ]
- },
- "26127": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Background#borderrightwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderrightwidth"
- }
- ]
- },
- "26128": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Background#borderbottomwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderbottomwidth"
- }
- ]
- },
- "26129": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Background#borderleftwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 33,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderleftwidth"
- }
- ]
- },
- "26130": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Background#bordertopleftradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopLeftRadius: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 34,
- "character": 4
- }
- ],
- "url": "/api/class/Background#bordertopleftradius"
- }
- ]
- },
- "26131": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Background#bordertoprightradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopRightRadius: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 35,
- "character": 4
- }
- ],
- "url": "/api/class/Background#bordertoprightradius"
- }
- ]
- },
- "26132": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Background#borderbottomleftradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomLeftRadius: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 36,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderbottomleftradius"
- }
- ]
- },
- "26133": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Background#borderbottomrightradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomRightRadius: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 37,
- "character": 4
- }
- ],
- "url": "/api/class/Background#borderbottomrightradius"
- }
- ]
- },
- "26134": {
- "name": "clipPath",
- "type": "Property",
- "url": "/api/class/Background#clippath",
- "flags": {},
- "signatures": [
- {
- "code": "clipPath: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 38,
- "character": 4
- }
- ],
- "url": "/api/class/Background#clippath"
- }
- ]
- },
- "26135": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Background#boxshadow",
- "flags": {},
- "signatures": [
- {
- "code": "boxShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 39,
- "character": 4
- }
- ],
- "url": "/api/class/Background#boxshadow"
- }
- ]
- },
- "26136": {
- "name": "clearFlags",
- "type": "Property",
- "url": "/api/class/Background#clearflags",
- "flags": {},
- "signatures": [
- {
- "code": "clearFlags: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 40,
- "character": 4
- }
- ],
- "url": "/api/class/Background#clearflags"
- }
- ]
- },
- "26138": {
- "name": "withColor",
- "type": "Method",
- "url": "/api/class/Background#withcolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withColor(value: Color): Background",
- "url": "/api/class/Background#withcolor-withcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 42,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "Color",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26141": {
- "name": "withImage",
- "type": "Method",
- "url": "/api/class/Background#withimage",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withImage(value: string | LinearGradient): Background",
- "url": "/api/class/Background#withimage-withimage-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 43,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "string | LinearGradient",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26144": {
- "name": "withRepeat",
- "type": "Method",
- "url": "/api/class/Background#withrepeat",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withRepeat(value: BackgroundRepeatType): Background",
- "url": "/api/class/Background#withrepeat-withrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "BackgroundRepeatType",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26147": {
- "name": "withPosition",
- "type": "Method",
- "url": "/api/class/Background#withposition",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withPosition(value: string): Background",
- "url": "/api/class/Background#withposition-withposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 45,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26150": {
- "name": "withSize",
- "type": "Method",
- "url": "/api/class/Background#withsize",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withSize(value: string): Background",
- "url": "/api/class/Background#withsize-withsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 46,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26153": {
- "name": "withBorderTopColor",
- "type": "Method",
- "url": "/api/class/Background#withbordertopcolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderTopColor(value: Color): Background",
- "url": "/api/class/Background#withbordertopcolor-withbordertopcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 47,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "Color",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26156": {
- "name": "withBorderRightColor",
- "type": "Method",
- "url": "/api/class/Background#withborderrightcolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderRightColor(value: Color): Background",
- "url": "/api/class/Background#withborderrightcolor-withborderrightcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 48,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "Color",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26159": {
- "name": "withBorderBottomColor",
- "type": "Method",
- "url": "/api/class/Background#withborderbottomcolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderBottomColor(value: Color): Background",
- "url": "/api/class/Background#withborderbottomcolor-withborderbottomcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "Color",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26162": {
- "name": "withBorderLeftColor",
- "type": "Method",
- "url": "/api/class/Background#withborderleftcolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderLeftColor(value: Color): Background",
- "url": "/api/class/Background#withborderleftcolor-withborderleftcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 50,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "Color",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26165": {
- "name": "withBorderTopWidth",
- "type": "Method",
- "url": "/api/class/Background#withbordertopwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderTopWidth(value: number): Background",
- "url": "/api/class/Background#withbordertopwidth-withbordertopwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 51,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26168": {
- "name": "withBorderRightWidth",
- "type": "Method",
- "url": "/api/class/Background#withborderrightwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderRightWidth(value: number): Background",
- "url": "/api/class/Background#withborderrightwidth-withborderrightwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26171": {
- "name": "withBorderBottomWidth",
- "type": "Method",
- "url": "/api/class/Background#withborderbottomwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderBottomWidth(value: number): Background",
- "url": "/api/class/Background#withborderbottomwidth-withborderbottomwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26174": {
- "name": "withBorderLeftWidth",
- "type": "Method",
- "url": "/api/class/Background#withborderleftwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderLeftWidth(value: number): Background",
- "url": "/api/class/Background#withborderleftwidth-withborderleftwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 54,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26177": {
- "name": "withBorderTopLeftRadius",
- "type": "Method",
- "url": "/api/class/Background#withbordertopleftradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderTopLeftRadius(value: number): Background",
- "url": "/api/class/Background#withbordertopleftradius-withbordertopleftradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26180": {
- "name": "withBorderTopRightRadius",
- "type": "Method",
- "url": "/api/class/Background#withbordertoprightradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderTopRightRadius(value: number): Background",
- "url": "/api/class/Background#withbordertoprightradius-withbordertoprightradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26183": {
- "name": "withBorderBottomRightRadius",
- "type": "Method",
- "url": "/api/class/Background#withborderbottomrightradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderBottomRightRadius(value: number): Background",
- "url": "/api/class/Background#withborderbottomrightradius-withborderbottomrightradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 57,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26186": {
- "name": "withBorderBottomLeftRadius",
- "type": "Method",
- "url": "/api/class/Background#withborderbottomleftradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBorderBottomLeftRadius(value: number): Background",
- "url": "/api/class/Background#withborderbottomleftradius-withborderbottomleftradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 58,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26189": {
- "name": "withClipPath",
- "type": "Method",
- "url": "/api/class/Background#withclippath",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withClipPath(value: string): Background",
- "url": "/api/class/Background#withclippath-withclippath-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26192": {
- "name": "withBoxShadow",
- "type": "Method",
- "url": "/api/class/Background#withboxshadow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withBoxShadow(value: CSSShadow): Background",
- "url": "/api/class/Background#withboxshadow-withboxshadow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "CSSShadow",
- "flags": {}
- }
- ],
- "returns": "Background"
- }
- ]
- },
- "26195": {
- "name": "isEmpty",
- "type": "Method",
- "url": "/api/class/Background#isempty",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isEmpty(): boolean",
- "url": "/api/class/Background#isempty-isempty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 61,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26197": {
- "name": "hasBorderColor",
- "type": "Method",
- "url": "/api/class/Background#hasbordercolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasBorderColor(): boolean",
- "url": "/api/class/Background#hasbordercolor-hasbordercolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26199": {
- "name": "hasBorderWidth",
- "type": "Method",
- "url": "/api/class/Background#hasborderwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasBorderWidth(): boolean",
- "url": "/api/class/Background#hasborderwidth-hasborderwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 64,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26201": {
- "name": "hasBorderRadius",
- "type": "Method",
- "url": "/api/class/Background#hasborderradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasBorderRadius(): boolean",
- "url": "/api/class/Background#hasborderradius-hasborderradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26203": {
- "name": "hasUniformBorderColor",
- "type": "Method",
- "url": "/api/class/Background#hasuniformbordercolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasUniformBorderColor(): boolean",
- "url": "/api/class/Background#hasuniformbordercolor-hasuniformbordercolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26205": {
- "name": "hasUniformBorderWidth",
- "type": "Method",
- "url": "/api/class/Background#hasuniformborderwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasUniformBorderWidth(): boolean",
- "url": "/api/class/Background#hasuniformborderwidth-hasuniformborderwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 67,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26207": {
- "name": "hasUniformBorderRadius",
- "type": "Method",
- "url": "/api/class/Background#hasuniformborderradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasUniformBorderRadius(): boolean",
- "url": "/api/class/Background#hasuniformborderradius-hasuniformborderradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26209": {
- "name": "hasUniformBorder",
- "type": "Method",
- "url": "/api/class/Background#hasuniformborder",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasUniformBorder(): boolean",
- "url": "/api/class/Background#hasuniformborder-hasuniformborder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26211": {
- "name": "getUniformBorderColor",
- "type": "Method",
- "url": "/api/class/Background#getuniformbordercolor",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getUniformBorderColor(): Color",
- "url": "/api/class/Background#getuniformbordercolor-getuniformbordercolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 70,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "26213": {
- "name": "getUniformBorderWidth",
- "type": "Method",
- "url": "/api/class/Background#getuniformborderwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getUniformBorderWidth(): number",
- "url": "/api/class/Background#getuniformborderwidth-getuniformborderwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 71,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "26215": {
- "name": "getUniformBorderRadius",
- "type": "Method",
- "url": "/api/class/Background#getuniformborderradius",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getUniformBorderRadius(): number",
- "url": "/api/class/Background#getuniformborderradius-getuniformborderradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 72,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "26217": {
- "name": "hasBoxShadow",
- "type": "Method",
- "url": "/api/class/Background#hasboxshadow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasBoxShadow(): boolean",
- "url": "/api/class/Background#hasboxshadow-hasboxshadow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26219": {
- "name": "getBoxShadow",
- "type": "Method",
- "url": "/api/class/Background#getboxshadow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getBoxShadow(): CSSShadow",
- "url": "/api/class/Background#getboxshadow-getboxshadow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "CSSShadow"
- }
- ]
- },
- "26221": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Background#tostring",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Background#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/background-common.d.ts",
- "line": 75,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Background.md b/content/api/class/Background.md
deleted file mode 100644
index e404d1ea..00000000
--- a/content/api/class/Background.md
+++ /dev/null
@@ -1,820 +0,0 @@
----
-title: Background
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Background'
-layout: api
-seo:
- description: Background
----
-
-
-
-
-
-
-updating: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 50,
- "character": 4
- }
- ],
- "url": "/api/class/Binding#updating"
- }
- ]
- },
- "9028": {
- "name": "sourceIsBindingContext",
- "type": "Property",
- "url": "/api/class/Binding#sourceisbindingcontext",
- "flags": {},
- "signatures": [
- {
- "code": "sourceIsBindingContext: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 51,
- "character": 4
- }
- ],
- "url": "/api/class/Binding#sourceisbindingcontext"
- }
- ]
- },
- "9029": {
- "name": "options",
- "type": "Property",
- "url": "/api/class/Binding#options",
- "flags": {},
- "signatures": [
- {
- "code": "options: BindingOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "url": "/api/class/Binding#options"
- }
- ]
- },
- "9031": {
- "name": "loadedHandlerVisualTreeBinding",
- "type": "Method",
- "url": "/api/class/Binding#loadedhandlervisualtreebinding",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadedHandlerVisualTreeBinding(args: any): void",
- "url": "/api/class/Binding#loadedhandlervisualtreebinding-loadedhandlervisualtreebinding-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "args",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9034": {
- "name": "clearSource",
- "type": "Method",
- "url": "/api/class/Binding#clearsource",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "clearSource(): void",
- "url": "/api/class/Binding#clearsource-clearsource-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9038": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Binding#bind",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(source: any): void",
- "url": "/api/class/Binding#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "source",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9042": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Binding#unbind",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(): void",
- "url": "/api/class/Binding#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 61,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9049": {
- "name": "onSourcePropertyChanged",
- "type": "Method",
- "url": "/api/class/Binding#onsourcepropertychanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onSourcePropertyChanged(data: PropertyChangeData): void",
- "url": "/api/class/Binding#onsourcepropertychanged-onsourcepropertychanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 67,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "data",
- "type": "PropertyChangeData",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9054": {
- "name": "clearBinding",
- "type": "Method",
- "url": "/api/class/Binding#clearbinding",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "clearBinding(): void",
- "url": "/api/class/Binding#clearbinding-clearbinding-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/bindable/index.d.ts",
- "line": 70,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Binding.md b/content/api/class/Binding.md
deleted file mode 100644
index 5d3cc437..00000000
--- a/content/api/class/Binding.md
+++ /dev/null
@@ -1,190 +0,0 @@
----
-title: Binding
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Binding'
-layout: api
-seo:
- description: Binding
----
-
-
-
-
-
-
-knownTemplates: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 42,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "UI plugin developers can add to these to define their own custom types if needed"
- }
- ]
- },
- "url": "/api/class/Builder#knowntemplates"
- }
- ]
- },
- "7488": {
- "name": "knownMultiTemplates",
- "type": "Property",
- "url": "/api/class/Builder#knownmultitemplates",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "knownMultiTemplates: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 43,
- "character": 8
- }
- ],
- "url": "/api/class/Builder#knownmultitemplates"
- }
- ]
- },
- "7489": {
- "name": "knownCollections",
- "type": "Property",
- "url": "/api/class/Builder#knowncollections",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "knownCollections: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 44,
- "character": 8
- }
- ],
- "url": "/api/class/Builder#knowncollections"
- }
- ]
- },
- "7490": {
- "name": "createViewFromEntry",
- "type": "Method",
- "url": "/api/class/Builder#createviewfromentry",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createViewFromEntry(entry: NavigationEntry): View",
- "url": "/api/class/Builder#createviewfromentry-createviewfromentry-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates view from navigation entry"
- }
- ]
- },
- "parameters": [
- {
- "name": "entry",
- "type": "NavigationEntry",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "NavigationEntry"
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "7493": {
- "name": "parse",
- "type": "Method",
- "url": "/api/class/Builder#parse",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "parse(value: string | Template, exports?: any): View",
- "url": "/api/class/Builder#parse-parse-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "string | Template",
- "flags": {}
- },
- {
- "name": "exports",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "7497": {
- "name": "parseMultipleTemplates",
- "type": "Method",
- "url": "/api/class/Builder#parsemultipletemplates",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "parseMultipleTemplates(value: string, exports?: any): KeyedTemplate[]",
- "url": "/api/class/Builder#parsemultipletemplates-parsemultipletemplates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an array of KeyedTemplates from string"
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The xml of the template to be parsed"
- }
- ]
- }
- },
- {
- "name": "exports",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current context of the template"
- }
- ]
- }
- }
- ],
- "returns": "KeyedTemplate[]"
- }
- ]
- },
- "7501": {
- "name": "load",
- "type": "Method",
- "url": "/api/class/Builder#load",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "load(moduleName: string, exports?: any): View",
- "url": "/api/class/Builder#load-load-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 66,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Loads component from module with context"
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the module name"
- }
- ]
- }
- },
- {
- "name": "exports",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the context of the component to be loaded"
- }
- ]
- }
- }
- ],
- "returns": "View"
- },
- {
- "type": "CallSignature",
- "code": "load(options: LoadOptions): View",
- "url": "/api/class/Builder#load-load-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/builder/index.d.ts",
- "line": 72,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Loads component from options"
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "LoadOptions",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load options"
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "7507": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Builder#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Builder(): Builder",
- "url": "/api/class/Builder#constructor-new-builder",
- "parameters": [],
- "returns": "Builder"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Builder.md b/content/api/class/Builder.md
deleted file mode 100644
index f90370e6..00000000
--- a/content/api/class/Builder.md
+++ /dev/null
@@ -1,148 +0,0 @@
----
-title: Builder
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Builder'
-layout: api
-seo:
- description: Builder
----
-
-
-
-
-
-
-tapEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/button/index.d.ts",
- "line": 11,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to tap event."
- }
- ]
- },
- "url": "/api/class/Button#tapevent"
- }
- ]
- },
- "7521": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Button#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Button#layoutchangedevent"
- }
- ]
- },
- "7522": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Button#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Button#showingmodallyevent"
- }
- ]
- },
- "7523": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Button#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Button#shownmodallyevent"
- }
- ]
- },
- "7524": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Button#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Button#accessibilityblurevent"
- }
- ]
- },
- "7525": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Button#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Button#accessibilityfocusevent"
- }
- ]
- },
- "7526": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Button#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Button#accessibilityfocuschangedevent"
- }
- ]
- },
- "7527": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Button#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Button#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "7536": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Button#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Button#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7544": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Button#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Button#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "7550": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Button#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Button#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "7554": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Button#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#accessibilityperformescapeevent"
- }
- ]
- },
- "7555": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Button#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Button#loadedevent"
- }
- ]
- },
- "7556": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Button#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Button#unloadedevent"
- }
- ]
- },
- "7557": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Button#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Button#createdevent"
- }
- ]
- },
- "7558": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Button#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Button#disposenativeviewevent"
- }
- ]
- },
- "7559": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Button#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Button#propertychangeevent"
- }
- ]
- },
- "7560": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Button#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7568": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Button#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7576": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Button#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7584": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Button#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7592": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Button#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7600": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Button#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Button(): Button",
- "url": "/api/class/Button#constructor-new-button",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "Button"
- }
- ]
- },
- "7602": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Button#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/Button.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/button/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/Button.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/Button#android"
- }
- ]
- },
- "7603": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Button#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [UIButton](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIButton_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/button/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [UIButton](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIButton_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/Button#ios"
- }
- ]
- },
- "7604": {
- "name": "textWrap",
- "type": "Property",
- "url": "/api/class/Button#textwrap",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the Button wraps text or not."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textWrap: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/button/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the Button wraps text or not."
- }
- ]
- },
- "url": "/api/class/Button#textwrap"
- }
- ]
- },
- "7605": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Button#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/button/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"tap\", callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/button/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a tap event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"tap\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7620": {
- "name": "nativeTextViewProtected",
- "type": "Property",
- "url": "/api/class/Button#nativetextviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "nativeTextViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 14,
- "character": 17
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "url": "/api/class/Button#nativetextviewprotected"
- }
- ]
- },
- "7621": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/Button#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "url": "/api/class/Button#text"
- }
- ]
- },
- "7622": {
- "name": "formattedText",
- "type": "Property",
- "url": "/api/class/Button#formattedtext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "formattedText: FormattedString",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "url": "/api/class/Button#formattedtext"
- }
- ]
- },
- "7623": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/Button#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "url": "/api/class/Button#fontsize"
- }
- ]
- },
- "7624": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/Button#letterspacing",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "url": "/api/class/Button#letterspacing"
- }
- ]
- },
- "7625": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/Button#lineheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "url": "/api/class/Button#lineheight"
- }
- ]
- },
- "7626": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/Button#textalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "url": "/api/class/Button#textalignment"
- }
- ]
- },
- "7627": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/Button#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "url": "/api/class/Button#textdecoration"
- }
- ]
- },
- "7628": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/Button#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "url": "/api/class/Button#texttransform"
- }
- ]
- },
- "7629": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/Button#textshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "url": "/api/class/Button#textshadow"
- }
- ]
- },
- "7630": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/Button#whitespace",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/Button#whitespace"
- }
- ]
- },
- "7631": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/Button#maxlines",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/Button#maxlines"
- }
- ]
- },
- "7632": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/Button#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/Button#padding"
- }
- ]
- },
- "7633": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/Button#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/Button#paddingbottom"
- }
- ]
- },
- "7634": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/Button#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/Button#paddingleft"
- }
- ]
- },
- "7635": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/Button#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/Button#paddingright"
- }
- ]
- },
- "7636": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/Button#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/Button#paddingtop"
- }
- ]
- },
- "7647": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Button#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Button#bindingcontext"
- }
- ]
- },
- "7648": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Button#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Button#bordercolor"
- }
- ]
- },
- "7649": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Button#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Button#bordertopcolor"
- }
- ]
- },
- "7650": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Button#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderrightcolor"
- }
- ]
- },
- "7651": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Button#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderbottomcolor"
- }
- ]
- },
- "7652": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Button#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderleftcolor"
- }
- ]
- },
- "7653": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Button#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderwidth"
- }
- ]
- },
- "7654": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Button#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Button#bordertopwidth"
- }
- ]
- },
- "7655": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Button#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderrightwidth"
- }
- ]
- },
- "7656": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Button#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderbottomwidth"
- }
- ]
- },
- "7657": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Button#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderleftwidth"
- }
- ]
- },
- "7658": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Button#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderradius"
- }
- ]
- },
- "7659": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Button#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Button#bordertopleftradius"
- }
- ]
- },
- "7660": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Button#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Button#bordertoprightradius"
- }
- ]
- },
- "7661": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Button#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderbottomrightradius"
- }
- ]
- },
- "7662": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Button#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Button#borderbottomleftradius"
- }
- ]
- },
- "7663": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Button#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Button#color"
- }
- ]
- },
- "7664": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Button#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Button#accessible"
- }
- ]
- },
- "7665": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Button#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Button#accessibilityhidden"
- }
- ]
- },
- "7666": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Button#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Button#accessibilityidentifier"
- }
- ]
- },
- "7667": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Button#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Button#accessibilityrole"
- }
- ]
- },
- "7668": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Button#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Button#accessibilitystate"
- }
- ]
- },
- "7669": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Button#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Button#accessibilitylabel"
- }
- ]
- },
- "7670": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Button#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Button#accessibilityvalue"
- }
- ]
- },
- "7671": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Button#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Button#accessibilityhint"
- }
- ]
- },
- "7672": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Button#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#accessibilityliveregion"
- }
- ]
- },
- "7673": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Button#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Button#accessibilitylanguage"
- }
- ]
- },
- "7674": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Button#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Button#accessibilitymediasession"
- }
- ]
- },
- "7675": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Button#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Button#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "7676": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Button#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Button#iosaccessibilityminfontscale"
- }
- ]
- },
- "7677": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Button#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Button#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "7678": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Button#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Button#androidcontentdescriptionupdated"
- }
- ]
- },
- "7679": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Button#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#automationtext"
- }
- ]
- },
- "7680": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Button#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Button#androidelevation"
- }
- ]
- },
- "7681": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Button#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Button#androiddynamicelevationoffset"
- }
- ]
- },
- "7682": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Button#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Button#background"
- }
- ]
- },
- "7683": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Button#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Button#backgroundcolor"
- }
- ]
- },
- "7684": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Button#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Button#backgroundimage"
- }
- ]
- },
- "7685": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Button#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Button#boxshadow"
- }
- ]
- },
- "7686": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Button#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Button#minwidth"
- }
- ]
- },
- "7687": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Button#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Button#minheight"
- }
- ]
- },
- "7688": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Button#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Button#width"
- }
- ]
- },
- "7689": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Button#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Button#height"
- }
- ]
- },
- "7690": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Button#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Button#margin"
- }
- ]
- },
- "7691": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Button#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Button#marginleft"
- }
- ]
- },
- "7692": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Button#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Button#margintop"
- }
- ]
- },
- "7693": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Button#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Button#marginright"
- }
- ]
- },
- "7694": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Button#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Button#marginbottom"
- }
- ]
- },
- "7695": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Button#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Button#horizontalalignment"
- }
- ]
- },
- "7696": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Button#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Button#verticalalignment"
- }
- ]
- },
- "7697": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Button#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Button#visibility"
- }
- ]
- },
- "7698": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Button#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Button#opacity"
- }
- ]
- },
- "7699": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Button#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Button#rotate"
- }
- ]
- },
- "7700": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Button#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Button#rotatex"
- }
- ]
- },
- "7701": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Button#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Button#rotatey"
- }
- ]
- },
- "7702": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Button#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Button#perspective"
- }
- ]
- },
- "7703": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Button#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Button#translatex"
- }
- ]
- },
- "7704": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Button#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Button#translatey"
- }
- ]
- },
- "7705": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Button#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Button#scalex"
- }
- ]
- },
- "7706": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Button#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Button#scaley"
- }
- ]
- },
- "7707": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Button#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Button#originx"
- }
- ]
- },
- "7708": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Button#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Button#originy"
- }
- ]
- },
- "7709": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Button#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Button#isenabled"
- }
- ]
- },
- "7710": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Button#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Button#isuserinteractionenabled"
- }
- ]
- },
- "7711": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Button#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Button#iosoverflowsafearea"
- }
- ]
- },
- "7712": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Button#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Button#iosoverflowsafeareaenabled"
- }
- ]
- },
- "7713": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Button#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Button#iosignoresafearea"
- }
- ]
- },
- "7714": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Button#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Button#islayoutvalid"
- }
- ]
- },
- "7715": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Button#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Button#csstype"
- }
- ]
- },
- "7716": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Button#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#cssclasses"
- }
- ]
- },
- "7717": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Button#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#csspseudoclasses"
- }
- ]
- },
- "7718": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Button#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Button#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7722": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Button#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Button#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7729": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Button#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Button#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "7731": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Button#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Button#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "7733": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Button#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Button#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "7735": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Button#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Button#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7739": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Button#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Button#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7745": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Button#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Button#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7749": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Button#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Button#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7755": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Button#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Button#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "7757": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Button#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Button#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "7760": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Button#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Button#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "7768": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Button#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Button#modal"
- }
- ]
- },
- "7769": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Button#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Button#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "7772": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Button#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Button#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "7775": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Button#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Button#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "7782": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Button#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Button#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "7784": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Button#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Button#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "7786": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Button#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Button#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "7789": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Button#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Button#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "7791": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Button#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Button#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "7803": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Button#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Button#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "7805": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Button#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Button#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "7807": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Button#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Button#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "7809": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Button#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Button#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7815": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Button#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Button#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7817": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Button#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Button#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "7819": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Button#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Button#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7821": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Button#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Button#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7827": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Button#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Button#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7830": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Button#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Button#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7833": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Button#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Button#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7902": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Button#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Button#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7908": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Button#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Button#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7913": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Button#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Button#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7915": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Button#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Button#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7917": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Button#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Button#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "7920": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Button#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Button#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "7923": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Button#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Button#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "7927": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Button#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#testid"
- }
- ]
- },
- "7928": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Button#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#touchanimation"
- }
- ]
- },
- "7929": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Button#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#ignoretouchanimation"
- }
- ]
- },
- "7930": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Button#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#touchdelay"
- }
- ]
- },
- "7931": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Button#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#closemodalcallback"
- }
- ]
- },
- "7932": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Button#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Button#transitionid"
- }
- ]
- },
- "7933": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Button#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#islayoutvalid"
- }
- ]
- },
- "7934": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Button#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Button#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7936": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Button#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Button#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7939": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Button#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7947": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Button#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7955": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Button#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7963": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Button#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Button#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "7966": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Button#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Button#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7969": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Button#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Button#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7973": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Button#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Button#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "7979": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Button#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Button#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7981": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Button#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Button#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7983": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Button#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Button#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7985": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Button#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Button#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7989": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Button#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Button#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "7993": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Button#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Button#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "7997": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Button#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Button#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "7999": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Button#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Button#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8005": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Button#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Button#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8007": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Button#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Button#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8011": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Button#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#domnode"
- }
- ]
- },
- "8012": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Button#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#recyclenativeview"
- }
- ]
- },
- "8013": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Button#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Button#viewcontroller"
- }
- ]
- },
- "8014": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Button#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Button#nativeviewprotected"
- }
- ]
- },
- "8015": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Button#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Button#parent"
- }
- ]
- },
- "8016": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Button#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Button#iscollapsed"
- }
- ]
- },
- "8017": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Button#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Button#id"
- }
- ]
- },
- "8018": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Button#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Button#classname"
- }
- ]
- },
- "8019": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Button#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Button#sharedtransitiontag"
- }
- ]
- },
- "8020": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Button#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Button#sharedtransitionignore"
- }
- ]
- },
- "8021": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Button#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#domid"
- }
- ]
- },
- "8022": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Button#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#context"
- }
- ]
- },
- "8023": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Button#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#isaddedtonativevisualtree"
- }
- ]
- },
- "8024": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Button#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#cssstate"
- }
- ]
- },
- "8025": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Button#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#stylescope"
- }
- ]
- },
- "8030": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Button#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Button#suspendnativeupdatescount"
- }
- ]
- },
- "8031": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Button#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#isstylescopehost"
- }
- ]
- },
- "8032": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Button#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "8033": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Button#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#left"
- }
- ]
- },
- "8034": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Button#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#top"
- }
- ]
- },
- "8035": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Button#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveleft"
- }
- ]
- },
- "8036": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Button#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivetop"
- }
- ]
- },
- "8037": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Button#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#dock"
- }
- ]
- },
- "8038": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Button#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#row"
- }
- ]
- },
- "8039": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Button#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#col"
- }
- ]
- },
- "8040": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Button#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#column"
- }
- ]
- },
- "8041": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Button#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#rowspan"
- }
- ]
- },
- "8042": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Button#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#colspan"
- }
- ]
- },
- "8043": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Button#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#columnspan"
- }
- ]
- },
- "8044": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Button#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#order"
- }
- ]
- },
- "8045": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Button#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#flexgrow"
- }
- ]
- },
- "8046": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Button#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#flexshrink"
- }
- ]
- },
- "8047": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Button#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#flexwrapbefore"
- }
- ]
- },
- "8048": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Button#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#alignself"
- }
- ]
- },
- "8049": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Button#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#oldleft"
- }
- ]
- },
- "8050": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Button#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#oldtop"
- }
- ]
- },
- "8051": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Button#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#oldright"
- }
- ]
- },
- "8052": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Button#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#oldbottom"
- }
- ]
- },
- "8053": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Button#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#ignoreflexminwidthheightreset"
- }
- ]
- },
- "8054": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Button#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveminwidth"
- }
- ]
- },
- "8055": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Button#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveminheight"
- }
- ]
- },
- "8056": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Button#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivewidth"
- }
- ]
- },
- "8057": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Button#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveheight"
- }
- ]
- },
- "8058": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Button#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivemargintop"
- }
- ]
- },
- "8059": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Button#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivemarginright"
- }
- ]
- },
- "8060": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Button#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivemarginbottom"
- }
- ]
- },
- "8061": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Button#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivemarginleft"
- }
- ]
- },
- "8062": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Button#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivepaddingtop"
- }
- ]
- },
- "8063": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Button#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivepaddingright"
- }
- ]
- },
- "8064": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Button#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivepaddingbottom"
- }
- ]
- },
- "8065": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Button#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivepaddingleft"
- }
- ]
- },
- "8066": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Button#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectivebordertopwidth"
- }
- ]
- },
- "8067": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Button#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveborderrightwidth"
- }
- ]
- },
- "8068": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Button#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveborderbottomwidth"
- }
- ]
- },
- "8069": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Button#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#effectiveborderleftwidth"
- }
- ]
- },
- "8070": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Button#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#defaultpaddingtop"
- }
- ]
- },
- "8071": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Button#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#defaultpaddingright"
- }
- ]
- },
- "8072": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Button#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#defaultpaddingbottom"
- }
- ]
- },
- "8073": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Button#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#defaultpaddingleft"
- }
- ]
- },
- "8074": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Button#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Button#ispaddingrelative"
- }
- ]
- },
- "8076": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Button#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Button#reusable"
- }
- ]
- },
- "8077": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Button#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Button#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "8081": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Button#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Button#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "8085": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Button#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Button#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8087": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Button#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Button#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "8091": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Button#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Button#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8093": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Button#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Button#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8097": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Button#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Button#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "8101": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Button#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Button#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "8105": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Button#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Button#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "8107": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Button#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Button#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8109": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Button#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Button#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8113": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Button#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Button#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8115": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Button#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Button#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8117": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Button#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Button#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8120": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Button#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Button#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8123": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Button#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Button#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "8129": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Button#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Button#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8131": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Button#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Button#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8133": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Button#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Button#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8136": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Button#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Button#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8139": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Button#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Button#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8143": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Button#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Button#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8146": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Button#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Button#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8150": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Button#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Button#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8154": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Button#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Button#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8157": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Button#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Button#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8159": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Button#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Button#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8162": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Button#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Button#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8165": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Button#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Button#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8168": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Button#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Button#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "8170": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Button#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Button#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8172": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Button#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Button#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8174": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Button#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Button#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8179": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Button#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Button#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8182": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Button#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Button#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8185": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Button#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Button#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8188": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Button#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Button#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "8191": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Button#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Button#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8195": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Button#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Button#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8198": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Button#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Button#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8202": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Button#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Button#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8205": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Button#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Button#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8208": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Button#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Button#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8210": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Button#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Button#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8214": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Button#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Button#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8217": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Button#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Button#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8219": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Button#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Button#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8222": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Button#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Button#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "8225": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Button#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Button#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8229": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Button#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Button#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8237": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Button#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Button#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8241": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Button#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Button#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8246": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Button#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Button#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8249": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Button#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Button#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "8254": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Button#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Button#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Button.md b/content/api/class/Button.md
deleted file mode 100644
index 8219298e..00000000
--- a/content/api/class/Button.md
+++ /dev/null
@@ -1,122 +0,0 @@
----
-title: Button
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Button'
-layout: api
-seo:
- description: "Represents a standard Button widget."
----
-
-
-
-
-
-
-Add: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 3,
- "character": 11
- }
- ],
- "url": "/api/class/ChangeType#add"
- }
- ]
- },
- "1409": {
- "name": "Delete",
- "type": "Property",
- "url": "/api/class/ChangeType#delete",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "Delete: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 4,
- "character": 11
- }
- ],
- "url": "/api/class/ChangeType#delete"
- }
- ]
- },
- "1410": {
- "name": "Update",
- "type": "Property",
- "url": "/api/class/ChangeType#update",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "Update: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 5,
- "character": 11
- }
- ],
- "url": "/api/class/ChangeType#update"
- }
- ]
- },
- "1411": {
- "name": "Splice",
- "type": "Property",
- "url": "/api/class/ChangeType#splice",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "Splice: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 6,
- "character": 11
- }
- ],
- "url": "/api/class/ChangeType#splice"
- }
- ]
- },
- "1412": {
- "name": "Change",
- "type": "Property",
- "url": "/api/class/ChangeType#change",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "Change: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 7,
- "character": 11
- }
- ],
- "url": "/api/class/ChangeType#change"
- }
- ]
- },
- "1413": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ChangeType#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ChangeType(): ChangeType",
- "url": "/api/class/ChangeType#constructor-new-changetype",
- "parameters": [],
- "returns": "ChangeType"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ChangeType.md b/content/api/class/ChangeType.md
deleted file mode 100644
index 4a71cc99..00000000
--- a/content/api/class/ChangeType.md
+++ /dev/null
@@ -1,118 +0,0 @@
----
-title: ChangeType
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ChangeType'
-layout: api
-seo:
- description: ChangeType
----
-
-
-
-
-
-
-coerce: (target: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 65,
- "character": 13
- }
- ],
- "url": "/api/class/CoercibleProperty#coerce"
- }
- ]
- },
- "11917": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#name",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 45,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#name"
- }
- ]
- },
- "11918": {
- "name": "key",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#key",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 46,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#key"
- }
- ]
- },
- "11919": {
- "name": "getDefault",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#getdefault",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "getDefault: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 47,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#getdefault"
- }
- ]
- },
- "11920": {
- "name": "setNative",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#setnative",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "setNative: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 48,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#setnative"
- }
- ]
- },
- "11921": {
- "name": "defaultValueKey",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#defaultvaluekey",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "defaultValueKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 49,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#defaultvaluekey"
- }
- ]
- },
- "11922": {
- "name": "defaultValue",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#defaultvalue",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "defaultValue: U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 50,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#defaultvalue"
- }
- ]
- },
- "11923": {
- "name": "nativeValueChange",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#nativevaluechange",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "nativeValueChange: (owner: T, value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 51,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#nativevaluechange"
- }
- ]
- },
- "11928": {
- "name": "isStyleProperty",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#isstyleproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "isStyleProperty: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#isstyleproperty"
- }
- ]
- },
- "11929": {
- "name": "get",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "get: () => U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#get"
- }
- ]
- },
- "11932": {
- "name": "set",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "set: (value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 54,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#set"
- }
- ]
- },
- "11936": {
- "name": "overrideHandlers",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#overridehandlers",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "overrideHandlers: (options: PropertyOptions<T, U>) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#overridehandlers"
- }
- ]
- },
- "11940": {
- "name": "enumerable",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#enumerable",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "enumerable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#enumerable"
- }
- ]
- },
- "11941": {
- "name": "configurable",
- "type": "Property",
- "url": "/api/class/CoercibleProperty#configurable",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "configurable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 57,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/CoercibleProperty#configurable"
- }
- ]
- },
- "11942": {
- "name": "register",
- "type": "Method",
- "url": "/api/class/CoercibleProperty#register",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "register(cls: {}): void",
- "url": "/api/class/CoercibleProperty#register-register-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "parameters": [
- {
- "name": "cls",
- "type": "{}",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11947": {
- "name": "isSet",
- "type": "Method",
- "url": "/api/class/CoercibleProperty#isset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isSet(instance: T): boolean",
- "url": "/api/class/CoercibleProperty#isset-isset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 62,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "parameters": [
- {
- "name": "instance",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/CoercibleProperty.md b/content/api/class/CoercibleProperty.md
deleted file mode 100644
index 1cbae18a..00000000
--- a/content/api/class/CoercibleProperty.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: CoercibleProperty
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'CoercibleProperty'
-layout: api
-seo:
- description: CoercibleProperty
----
-
-
-
-
-
-
-isValid(value: any): boolean",
- "url": "/api/class/Color#isvalid-isvalid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 72,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Validates if a value can be converted to color."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Input string."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "982": {
- "name": "fromIosColor",
- "type": "Method",
- "url": "/api/class/Color#fromioscolor",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromIosColor(value: any): Color",
- "url": "/api/class/Color#fromioscolor-fromioscolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 77,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates color from iOS-specific UIColor value representation."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "985": {
- "name": "mix",
- "type": "Method",
- "url": "/api/class/Color#mix",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "mix(color1: Color, color2: Color, amount: number): Color",
- "url": "/api/class/Color#mix-mix-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 198,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the color complement"
- }
- ]
- },
- "parameters": [
- {
- "name": "color1",
- "type": "Color",
- "flags": {}
- },
- {
- "name": "color2",
- "type": "Color",
- "flags": {}
- },
- {
- "name": "amount",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "990": {
- "name": "fromHSL",
- "type": "Method",
- "url": "/api/class/Color#fromhsl",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromHSL(a: any, h: any, s: any, l: any): Color",
- "url": "/api/class/Color#fromhsl-fromhsl-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns a new Color from HSL"
- }
- ]
- },
- "parameters": [
- {
- "name": "a",
- "type": "any",
- "flags": {}
- },
- {
- "name": "h",
- "type": "any",
- "flags": {}
- },
- {
- "name": "s",
- "type": "any",
- "flags": {}
- },
- {
- "name": "l",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "996": {
- "name": "fromHSV",
- "type": "Method",
- "url": "/api/class/Color#fromhsv",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromHSV(a: any, h: any, s: any, l: any): Color",
- "url": "/api/class/Color#fromhsv-fromhsv-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 205,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "a",
- "type": "any",
- "flags": {}
- },
- {
- "name": "h",
- "type": "any",
- "flags": {}
- },
- {
- "name": "s",
- "type": "any",
- "flags": {}
- },
- {
- "name": "l",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1002": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Color#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Color(knownColor: string): Color",
- "url": "/api/class/Color#constructor-new-color",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "knownColor",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "Color"
- },
- {
- "type": "ConstructorSignature",
- "code": "new Color(hex: string): Color",
- "url": "/api/class/Color#constructor-new-color-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 6,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "hex",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "Color"
- },
- {
- "type": "ConstructorSignature",
- "code": "new Color(argb: number): Color",
- "url": "/api/class/Color#constructor-new-color-2",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 7,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "argb",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Color"
- },
- {
- "type": "ConstructorSignature",
- "code": "new Color(alpha: number, red: number, green: number, blue: number, type?: \"rgb\" | \"hsl\" | \"hsv\"): Color",
- "url": "/api/class/Color#constructor-new-color-3",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 8,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "alpha",
- "type": "number",
- "flags": {}
- },
- {
- "name": "red",
- "type": "number",
- "flags": {}
- },
- {
- "name": "green",
- "type": "number",
- "flags": {}
- },
- {
- "name": "blue",
- "type": "number",
- "flags": {}
- },
- {
- "name": "type",
- "type": "\"rgb\" | \"hsl\" | \"hsv\"",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1015": {
- "name": "a",
- "type": "Property",
- "url": "/api/class/Color#a",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Alpha component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "a: number",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 13,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Alpha component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#a"
- }
- ]
- },
- "1016": {
- "name": "r",
- "type": "Property",
- "url": "/api/class/Color#r",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Red component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "r: number",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 18,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Red component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#r"
- }
- ]
- },
- "1017": {
- "name": "g",
- "type": "Property",
- "url": "/api/class/Color#g",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Green component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "g: number",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 23,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Green component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#g"
- }
- ]
- },
- "1018": {
- "name": "b",
- "type": "Property",
- "url": "/api/class/Color#b",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Blue component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "b: number",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 28,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Blue component (in the [0, 255] range) of this color. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#b"
- }
- ]
- },
- "1019": {
- "name": "hex",
- "type": "Property",
- "url": "/api/class/Color#hex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Hexadecimal string representation of this color. This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "hex: string",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 33,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Hexadecimal string representation of this color. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#hex"
- }
- ]
- },
- "1020": {
- "name": "argb",
- "type": "Property",
- "url": "/api/class/Color#argb",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Argb Number representation of this color where each 8 bits represent a single color component. This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "argb: number",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Argb Number representation of this color where each 8 bits represent a single color component. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#argb"
- }
- ]
- },
- "1021": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/Color#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the known name of this instance. Defined only if it has been constructed from a known color name - e.g. \"red\". This is a read-only property."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 43,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the known name of this instance. Defined only if it has been constructed from a known color name - e.g. \"red\". This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#name"
- }
- ]
- },
- "1022": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Color#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific integer value representation. Same as the Argb one. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: number",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific integer value representation. Same as the Argb one. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#android"
- }
- ]
- },
- "1023": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Color#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOS-specific UIColor value representation. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOS-specific UIColor value representation. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Color#ios"
- }
- ]
- },
- "1024": {
- "name": "equals",
- "type": "Method",
- "url": "/api/class/Color#equals",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "equals(value: Color): boolean",
- "url": "/api/class/Color#equals-equals-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies whether this Color is equal to the Color parameter."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "Color",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Color to test."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1027": {
- "name": "isDark",
- "type": "Method",
- "url": "/api/class/Color#isdark",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isDark(): boolean",
- "url": "/api/class/Color#isdark-isdark-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 83,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return true if brightenss < 128"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "1029": {
- "name": "isLight",
- "type": "Method",
- "url": "/api/class/Color#islight",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isLight(): boolean",
- "url": "/api/class/Color#islight-islight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return true if brightenss >= 128"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "1031": {
- "name": "getBrightness",
- "type": "Method",
- "url": "/api/class/Color#getbrightness",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getBrightness(): number",
- "url": "/api/class/Color#getbrightness-getbrightness-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 95,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the [brightness](http://www.w3.org/TR/AERT#color-contrast)"
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "1033": {
- "name": "getLuminance",
- "type": "Method",
- "url": "/api/class/Color#getluminance",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLuminance(): number",
- "url": "/api/class/Color#getluminance-getluminance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 100,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the [luminance](http://www.w3.org/TR/2008/REC-WCAG20-20081211/#relativeluminancedef)"
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "1035": {
- "name": "setAlpha",
- "type": "Method",
- "url": "/api/class/Color#setalpha",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setAlpha(a: number): Color",
- "url": "/api/class/Color#setalpha-setalpha-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 107,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Return this color (as a new Color instance) with the provided alpha"
- }
- ]
- },
- "parameters": [
- {
- "name": "a",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1038": {
- "name": "toHsl",
- "type": "Method",
- "url": "/api/class/Color#tohsl",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toHsl(): {\n a: number\n h: number\n l: number\n}",
- "url": "/api/class/Color#tohsl-tohsl-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 112,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the hsl representation of the color"
- }
- ]
- },
- "parameters": [],
- "returns": "{\n a: number\n h: number\n l: number\n}"
- }
- ]
- },
- "1045": {
- "name": "toHslString",
- "type": "Method",
- "url": "/api/class/Color#tohslstring",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toHslString(): string",
- "url": "/api/class/Color#tohslstring-tohslstring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 118,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the [CSS hsv](https://www.w3schools.com/Css/css_colors_hsl.asp) representation of the color"
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "1047": {
- "name": "toHsv",
- "type": "Method",
- "url": "/api/class/Color#tohsv",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toHsv(): {\n a: number\n h: number\n s: number\n}",
- "url": "/api/class/Color#tohsv-tohsv-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 124,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the hsv representation of the color"
- }
- ]
- },
- "parameters": [],
- "returns": "{\n a: number\n h: number\n s: number\n}"
- }
- ]
- },
- "1054": {
- "name": "toHsvString",
- "type": "Method",
- "url": "/api/class/Color#tohsvstring",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toHsvString(): string",
- "url": "/api/class/Color#tohsvstring-tohsvstring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 130,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the [CSS hsv](https://www.w3schools.com/Css/css_colors_rgb.asp) representation of the color"
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "1056": {
- "name": "toRgbString",
- "type": "Method",
- "url": "/api/class/Color#torgbstring",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toRgbString(): string",
- "url": "/api/class/Color#torgbstring-torgbstring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 136,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "return the [CSS rgb](https://www.w3schools.com/Css/css_colors_rgb.asp) representation of the color"
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "1058": {
- "name": "desaturate",
- "type": "Method",
- "url": "/api/class/Color#desaturate",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "desaturate(amount: number): Color",
- "url": "/api/class/Color#desaturate-desaturate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 143,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Desaturate the color a given amount, from 0 to 100. Providing 100 will is the same as calling greyscale."
- }
- ]
- },
- "parameters": [
- {
- "name": "amount",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(between 0 and 100)"
- }
- ]
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1061": {
- "name": "saturate",
- "type": "Method",
- "url": "/api/class/Color#saturate",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "saturate(amount: number): Color",
- "url": "/api/class/Color#saturate-saturate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 150,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Saturate the color a given amount, from 0 to 100."
- }
- ]
- },
- "parameters": [
- {
- "name": "amount",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(between 0 and 100)"
- }
- ]
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1064": {
- "name": "greyscale",
- "type": "Method",
- "url": "/api/class/Color#greyscale",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "greyscale(): Color",
- "url": "/api/class/Color#greyscale-greyscale-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 157,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Completely desaturates a color into greyscale. Same as calling desaturate(100)."
- }
- ],
- "blockTags": [
- {
- "tag": "@returns",
- "content": []
- }
- ]
- },
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "1066": {
- "name": "lighten",
- "type": "Method",
- "url": "/api/class/Color#lighten",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "lighten(amount: number): Color",
- "url": "/api/class/Color#lighten-lighten-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 165,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Lighten the color a given amount, from 0 to 100. Providing 100 will always return white."
- }
- ],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "olor : Color"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "amount",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(between 0 and 100)"
- }
- ]
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1069": {
- "name": "brighten",
- "type": "Method",
- "url": "/api/class/Color#brighten",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "brighten(amount: number): Color",
- "url": "/api/class/Color#brighten-brighten-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 172,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Brighten the color a given amount, from 0 to 100."
- }
- ]
- },
- "parameters": [
- {
- "name": "amount",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(between 0 and 100)"
- }
- ]
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1072": {
- "name": "darken",
- "type": "Method",
- "url": "/api/class/Color#darken",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "darken(amount: number): Color",
- "url": "/api/class/Color#darken-darken-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Darken the color a given amount, from 0 to 100. Providing 100 will always return black."
- }
- ]
- },
- "parameters": [
- {
- "name": "amount",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(between 0 and 100)"
- }
- ]
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1075": {
- "name": "spin",
- "type": "Method",
- "url": "/api/class/Color#spin",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "spin(amount: number): Color",
- "url": "/api/class/Color#spin-spin-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 186,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Spin the hue a given amount, from -360 to 360. Calling with 0, 360, or -360 will do nothing (since it sets the hue back to what it was before)."
- }
- ]
- },
- "parameters": [
- {
- "name": "amount",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(between 0 and 100)"
- }
- ]
- }
- }
- ],
- "returns": "Color"
- }
- ]
- },
- "1078": {
- "name": "complement",
- "type": "Method",
- "url": "/api/class/Color#complement",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "complement(): Color",
- "url": "/api/class/Color#complement-complement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/color/index.d.ts",
- "line": 192,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the color complement"
- }
- ]
- },
- "parameters": [],
- "returns": "Color"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Color.md b/content/api/class/Color.md
deleted file mode 100644
index 32a8bec8..00000000
--- a/content/api/class/Color.md
+++ /dev/null
@@ -1,528 +0,0 @@
----
-title: Color
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Color'
-layout: api
-seo:
- description: "Represents a color object. Stores all color components (alpha (opacity), red, green, blue) in a [0..255] range."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ContainerView#layoutchangedevent"
- }
- ]
- },
- "10250": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ContainerView#showingmodallyevent"
- }
- ]
- },
- "10251": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ContainerView#shownmodallyevent"
- }
- ]
- },
- "10252": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityblurevent"
- }
- ]
- },
- "10253": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityfocusevent"
- }
- ]
- },
- "10254": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityfocuschangedevent"
- }
- ]
- },
- "10255": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ContainerView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ContainerView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "10264": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ContainerView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ContainerView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10272": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ContainerView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ContainerView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "10278": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ContainerView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ContainerView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "10282": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#accessibilityperformescapeevent"
- }
- ]
- },
- "10283": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ContainerView#loadedevent"
- }
- ]
- },
- "10284": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ContainerView#unloadedevent"
- }
- ]
- },
- "10285": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ContainerView#createdevent"
- }
- ]
- },
- "10286": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ContainerView#disposenativeviewevent"
- }
- ]
- },
- "10287": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ContainerView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ContainerView#propertychangeevent"
- }
- ]
- },
- "10288": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ContainerView#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10296": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ContainerView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10304": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ContainerView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10312": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ContainerView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10320": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ContainerView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10328": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ContainerView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ContainerView(): ContainerView",
- "url": "/api/class/ContainerView#constructor-new-containerview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "ContainerView"
- }
- ]
- },
- "10330": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ContainerView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ContainerView#iosoverflowsafearea"
- }
- ]
- },
- "10331": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ContainerView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/ContainerView#android"
- }
- ]
- },
- "10332": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ContainerView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/ContainerView#ios"
- }
- ]
- },
- "10333": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ContainerView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ContainerView#bindingcontext"
- }
- ]
- },
- "10334": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ContainerView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#bordercolor"
- }
- ]
- },
- "10335": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ContainerView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#bordertopcolor"
- }
- ]
- },
- "10336": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ContainerView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderrightcolor"
- }
- ]
- },
- "10337": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ContainerView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderbottomcolor"
- }
- ]
- },
- "10338": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ContainerView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderleftcolor"
- }
- ]
- },
- "10339": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderwidth"
- }
- ]
- },
- "10340": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#bordertopwidth"
- }
- ]
- },
- "10341": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderrightwidth"
- }
- ]
- },
- "10342": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderbottomwidth"
- }
- ]
- },
- "10343": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderleftwidth"
- }
- ]
- },
- "10344": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ContainerView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderradius"
- }
- ]
- },
- "10345": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ContainerView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#bordertopleftradius"
- }
- ]
- },
- "10346": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ContainerView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#bordertoprightradius"
- }
- ]
- },
- "10347": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ContainerView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderbottomrightradius"
- }
- ]
- },
- "10348": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ContainerView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#borderbottomleftradius"
- }
- ]
- },
- "10349": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ContainerView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#color"
- }
- ]
- },
- "10350": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ContainerView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessible"
- }
- ]
- },
- "10351": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityhidden"
- }
- ]
- },
- "10352": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityidentifier"
- }
- ]
- },
- "10353": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityrole"
- }
- ]
- },
- "10354": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilitystate"
- }
- ]
- },
- "10355": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilitylabel"
- }
- ]
- },
- "10356": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityvalue"
- }
- ]
- },
- "10357": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilityhint"
- }
- ]
- },
- "10358": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#accessibilityliveregion"
- }
- ]
- },
- "10359": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilitylanguage"
- }
- ]
- },
- "10360": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ContainerView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ContainerView#accessibilitymediasession"
- }
- ]
- },
- "10361": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ContainerView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ContainerView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "10362": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ContainerView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ContainerView#iosaccessibilityminfontscale"
- }
- ]
- },
- "10363": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ContainerView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ContainerView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "10364": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ContainerView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ContainerView#androidcontentdescriptionupdated"
- }
- ]
- },
- "10365": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ContainerView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#automationtext"
- }
- ]
- },
- "10366": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ContainerView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ContainerView#androidelevation"
- }
- ]
- },
- "10367": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ContainerView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ContainerView#androiddynamicelevationoffset"
- }
- ]
- },
- "10368": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ContainerView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ContainerView#background"
- }
- ]
- },
- "10369": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ContainerView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#backgroundcolor"
- }
- ]
- },
- "10370": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ContainerView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#backgroundimage"
- }
- ]
- },
- "10371": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ContainerView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#boxshadow"
- }
- ]
- },
- "10372": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ContainerView#minwidth"
- }
- ]
- },
- "10373": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ContainerView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ContainerView#minheight"
- }
- ]
- },
- "10374": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ContainerView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#width"
- }
- ]
- },
- "10375": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ContainerView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#height"
- }
- ]
- },
- "10376": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ContainerView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ContainerView#margin"
- }
- ]
- },
- "10377": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ContainerView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ContainerView#marginleft"
- }
- ]
- },
- "10378": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ContainerView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ContainerView#margintop"
- }
- ]
- },
- "10379": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ContainerView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ContainerView#marginright"
- }
- ]
- },
- "10380": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ContainerView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ContainerView#marginbottom"
- }
- ]
- },
- "10381": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ContainerView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ContainerView#horizontalalignment"
- }
- ]
- },
- "10382": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ContainerView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ContainerView#verticalalignment"
- }
- ]
- },
- "10383": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ContainerView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#visibility"
- }
- ]
- },
- "10384": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ContainerView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ContainerView#opacity"
- }
- ]
- },
- "10385": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ContainerView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ContainerView#rotate"
- }
- ]
- },
- "10386": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ContainerView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ContainerView#rotatex"
- }
- ]
- },
- "10387": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ContainerView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ContainerView#rotatey"
- }
- ]
- },
- "10388": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ContainerView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ContainerView#perspective"
- }
- ]
- },
- "10389": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ContainerView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ContainerView#translatex"
- }
- ]
- },
- "10390": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ContainerView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ContainerView#translatey"
- }
- ]
- },
- "10391": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ContainerView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#scalex"
- }
- ]
- },
- "10392": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ContainerView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#scaley"
- }
- ]
- },
- "10393": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ContainerView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#originx"
- }
- ]
- },
- "10394": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ContainerView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#originy"
- }
- ]
- },
- "10395": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ContainerView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#isenabled"
- }
- ]
- },
- "10396": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ContainerView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ContainerView#isuserinteractionenabled"
- }
- ]
- },
- "10397": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ContainerView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ContainerView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "10398": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ContainerView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ContainerView#iosignoresafearea"
- }
- ]
- },
- "10399": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ContainerView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ContainerView#islayoutvalid"
- }
- ]
- },
- "10400": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ContainerView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ContainerView#csstype"
- }
- ]
- },
- "10401": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ContainerView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#cssclasses"
- }
- ]
- },
- "10402": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ContainerView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#csspseudoclasses"
- }
- ]
- },
- "10403": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ContainerView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ContainerView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10407": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ContainerView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ContainerView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10414": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ContainerView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ContainerView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "10416": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ContainerView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ContainerView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "10418": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ContainerView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ContainerView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "10420": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ContainerView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ContainerView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10424": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ContainerView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ContainerView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10430": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ContainerView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ContainerView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10434": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ContainerView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ContainerView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10440": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ContainerView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ContainerView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10442": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ContainerView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ContainerView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "10445": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ContainerView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContainerView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "10453": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ContainerView#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContainerView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContainerView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContainerView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContainerView#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/ContainerView#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "10496": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ContainerView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ContainerView#modal"
- }
- ]
- },
- "10497": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ContainerView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ContainerView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "10500": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ContainerView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ContainerView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "10503": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ContainerView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ContainerView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "10510": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ContainerView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ContainerView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "10512": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ContainerView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ContainerView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "10514": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ContainerView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ContainerView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "10517": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ContainerView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ContainerView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "10519": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ContainerView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ContainerView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10531": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ContainerView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ContainerView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "10533": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ContainerView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ContainerView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10535": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ContainerView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ContainerView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "10537": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ContainerView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ContainerView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10543": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ContainerView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ContainerView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10545": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ContainerView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ContainerView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10547": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ContainerView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ContainerView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10549": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ContainerView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ContainerView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10555": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ContainerView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ContainerView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10558": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ContainerView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ContainerView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10561": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ContainerView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ContainerView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10630": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ContainerView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ContainerView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10636": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ContainerView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ContainerView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10641": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ContainerView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ContainerView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10643": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ContainerView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ContainerView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10645": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ContainerView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ContainerView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10648": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ContainerView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ContainerView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "10651": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ContainerView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ContainerView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "10655": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ContainerView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#testid"
- }
- ]
- },
- "10656": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ContainerView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#touchanimation"
- }
- ]
- },
- "10657": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ContainerView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#ignoretouchanimation"
- }
- ]
- },
- "10658": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ContainerView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#touchdelay"
- }
- ]
- },
- "10659": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ContainerView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#closemodalcallback"
- }
- ]
- },
- "10660": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ContainerView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ContainerView#transitionid"
- }
- ]
- },
- "10661": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ContainerView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#islayoutvalid"
- }
- ]
- },
- "10662": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ContainerView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ContainerView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10664": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ContainerView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ContainerView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10667": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ContainerView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10675": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ContainerView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10683": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ContainerView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10691": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ContainerView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ContainerView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "10694": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ContainerView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ContainerView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10697": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ContainerView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ContainerView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10701": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ContainerView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ContainerView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10707": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ContainerView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ContainerView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10709": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ContainerView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ContainerView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10711": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ContainerView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ContainerView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10713": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ContainerView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ContainerView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10717": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ContainerView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ContainerView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10721": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ContainerView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ContainerView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "10725": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ContainerView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ContainerView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "10729": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ContainerView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ContainerView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10731": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ContainerView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ContainerView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10737": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ContainerView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ContainerView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10739": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ContainerView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ContainerView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10743": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ContainerView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#domnode"
- }
- ]
- },
- "10744": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ContainerView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#recyclenativeview"
- }
- ]
- },
- "10745": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ContainerView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ContainerView#viewcontroller"
- }
- ]
- },
- "10746": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ContainerView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ContainerView#nativeviewprotected"
- }
- ]
- },
- "10747": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ContainerView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ContainerView#parent"
- }
- ]
- },
- "10748": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ContainerView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ContainerView#iscollapsed"
- }
- ]
- },
- "10749": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ContainerView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ContainerView#id"
- }
- ]
- },
- "10750": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ContainerView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ContainerView#classname"
- }
- ]
- },
- "10751": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ContainerView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ContainerView#sharedtransitiontag"
- }
- ]
- },
- "10752": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ContainerView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ContainerView#sharedtransitionignore"
- }
- ]
- },
- "10753": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ContainerView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#domid"
- }
- ]
- },
- "10754": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ContainerView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#context"
- }
- ]
- },
- "10755": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ContainerView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#isaddedtonativevisualtree"
- }
- ]
- },
- "10756": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ContainerView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#cssstate"
- }
- ]
- },
- "10757": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ContainerView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#stylescope"
- }
- ]
- },
- "10762": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ContainerView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ContainerView#suspendnativeupdatescount"
- }
- ]
- },
- "10763": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ContainerView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#isstylescopehost"
- }
- ]
- },
- "10764": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ContainerView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "10765": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ContainerView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#left"
- }
- ]
- },
- "10766": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ContainerView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#top"
- }
- ]
- },
- "10767": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveleft"
- }
- ]
- },
- "10768": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivetop"
- }
- ]
- },
- "10769": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ContainerView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#dock"
- }
- ]
- },
- "10770": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ContainerView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#row"
- }
- ]
- },
- "10771": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ContainerView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#col"
- }
- ]
- },
- "10772": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ContainerView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#column"
- }
- ]
- },
- "10773": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ContainerView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#rowspan"
- }
- ]
- },
- "10774": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ContainerView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#colspan"
- }
- ]
- },
- "10775": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ContainerView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#columnspan"
- }
- ]
- },
- "10776": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ContainerView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#order"
- }
- ]
- },
- "10777": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ContainerView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#flexgrow"
- }
- ]
- },
- "10778": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ContainerView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#flexshrink"
- }
- ]
- },
- "10779": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ContainerView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#flexwrapbefore"
- }
- ]
- },
- "10780": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ContainerView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#alignself"
- }
- ]
- },
- "10781": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ContainerView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#oldleft"
- }
- ]
- },
- "10782": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ContainerView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#oldtop"
- }
- ]
- },
- "10783": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ContainerView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#oldright"
- }
- ]
- },
- "10784": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ContainerView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#oldbottom"
- }
- ]
- },
- "10785": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ContainerView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "10786": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveminwidth"
- }
- ]
- },
- "10787": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveminheight"
- }
- ]
- },
- "10788": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivewidth"
- }
- ]
- },
- "10789": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveheight"
- }
- ]
- },
- "10790": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivemargintop"
- }
- ]
- },
- "10791": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivemarginright"
- }
- ]
- },
- "10792": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivemarginbottom"
- }
- ]
- },
- "10793": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivemarginleft"
- }
- ]
- },
- "10794": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivepaddingtop"
- }
- ]
- },
- "10795": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivepaddingright"
- }
- ]
- },
- "10796": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivepaddingbottom"
- }
- ]
- },
- "10797": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivepaddingleft"
- }
- ]
- },
- "10798": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectivebordertopwidth"
- }
- ]
- },
- "10799": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveborderrightwidth"
- }
- ]
- },
- "10800": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveborderbottomwidth"
- }
- ]
- },
- "10801": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ContainerView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#effectiveborderleftwidth"
- }
- ]
- },
- "10802": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ContainerView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#defaultpaddingtop"
- }
- ]
- },
- "10803": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ContainerView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#defaultpaddingright"
- }
- ]
- },
- "10804": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ContainerView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#defaultpaddingbottom"
- }
- ]
- },
- "10805": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ContainerView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#defaultpaddingleft"
- }
- ]
- },
- "10806": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ContainerView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ContainerView#ispaddingrelative"
- }
- ]
- },
- "10808": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ContainerView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ContainerView#reusable"
- }
- ]
- },
- "10809": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ContainerView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ContainerView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "10813": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ContainerView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ContainerView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "10817": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ContainerView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ContainerView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10819": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ContainerView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ContainerView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "10823": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ContainerView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ContainerView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10825": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ContainerView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ContainerView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10829": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ContainerView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ContainerView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "10833": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ContainerView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ContainerView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "10837": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ContainerView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ContainerView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "10839": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ContainerView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ContainerView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10841": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ContainerView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ContainerView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10845": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ContainerView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ContainerView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10847": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ContainerView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ContainerView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10849": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ContainerView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ContainerView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10852": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ContainerView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ContainerView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10855": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ContainerView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ContainerView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "10861": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ContainerView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ContainerView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10863": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ContainerView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ContainerView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10865": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ContainerView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ContainerView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10868": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ContainerView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ContainerView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10871": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ContainerView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ContainerView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10875": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ContainerView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ContainerView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10878": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ContainerView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ContainerView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10882": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ContainerView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ContainerView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10886": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ContainerView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ContainerView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10889": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ContainerView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ContainerView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10891": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ContainerView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ContainerView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10894": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ContainerView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ContainerView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10897": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ContainerView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ContainerView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10900": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ContainerView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ContainerView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "10902": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ContainerView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ContainerView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10904": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ContainerView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ContainerView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10906": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ContainerView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ContainerView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10911": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ContainerView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ContainerView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10914": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ContainerView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ContainerView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10917": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ContainerView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ContainerView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10920": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ContainerView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ContainerView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "10923": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ContainerView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ContainerView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10927": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ContainerView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ContainerView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10930": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ContainerView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ContainerView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10934": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ContainerView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ContainerView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10937": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ContainerView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ContainerView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10940": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ContainerView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ContainerView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10942": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ContainerView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ContainerView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10946": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ContainerView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ContainerView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10949": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ContainerView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ContainerView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10951": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ContainerView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ContainerView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10954": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ContainerView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ContainerView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "10957": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ContainerView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ContainerView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10961": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ContainerView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContainerView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10969": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ContainerView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ContainerView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10973": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ContainerView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ContainerView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10978": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ContainerView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ContainerView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10981": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ContainerView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ContainerView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "10986": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ContainerView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ContainerView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ContainerView.md b/content/api/class/ContainerView.md
deleted file mode 100644
index 9f22a6b8..00000000
--- a/content/api/class/ContainerView.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-title: ContainerView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ContainerView'
-layout: api
-seo:
- description: "Base class for all UI components that are containers."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ContentView#layoutchangedevent"
- }
- ]
- },
- "8259": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ContentView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ContentView#showingmodallyevent"
- }
- ]
- },
- "8260": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ContentView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ContentView#shownmodallyevent"
- }
- ]
- },
- "8261": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityblurevent"
- }
- ]
- },
- "8262": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityfocusevent"
- }
- ]
- },
- "8263": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityfocuschangedevent"
- }
- ]
- },
- "8264": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ContentView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ContentView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "8273": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ContentView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ContentView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8281": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ContentView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ContentView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "8287": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ContentView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ContentView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "8291": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#accessibilityperformescapeevent"
- }
- ]
- },
- "8292": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ContentView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ContentView#loadedevent"
- }
- ]
- },
- "8293": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ContentView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ContentView#unloadedevent"
- }
- ]
- },
- "8294": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ContentView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ContentView#createdevent"
- }
- ]
- },
- "8295": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ContentView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ContentView#disposenativeviewevent"
- }
- ]
- },
- "8296": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ContentView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ContentView#propertychangeevent"
- }
- ]
- },
- "8297": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ContentView#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8305": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ContentView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8313": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ContentView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8321": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ContentView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8329": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ContentView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8337": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ContentView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ContentView(): ContentView",
- "url": "/api/class/ContentView#constructor-new-contentview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "ContentView"
- }
- ]
- },
- "8339": {
- "name": "content",
- "type": "Property",
- "url": "/api/class/ContentView#content",
- "flags": {},
- "signatures": [
- {
- "code": "content: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 4,
- "character": 1
- }
- ],
- "url": "/api/class/ContentView#content"
- }
- ]
- },
- "8340": {
- "name": "layoutView",
- "type": "Method",
- "url": "/api/class/ContentView#layoutview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutView(): View",
- "url": "/api/class/ContentView#layoutview-layoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "8342": {
- "name": "_addChildFromBuilder",
- "type": "Method",
- "url": "/api/class/ContentView#addchildfrombuilder",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addChildFromBuilder(name: string, value: any): void",
- "url": "/api/class/ContentView#addchildfrombuilder-addchildfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 6,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8357": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ContentView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ContentView#iosoverflowsafearea"
- }
- ]
- },
- "8358": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ContentView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/ContentView#android"
- }
- ]
- },
- "8359": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ContentView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/ContentView#ios"
- }
- ]
- },
- "8360": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ContentView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ContentView#bindingcontext"
- }
- ]
- },
- "8361": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ContentView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#bordercolor"
- }
- ]
- },
- "8362": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ContentView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#bordertopcolor"
- }
- ]
- },
- "8363": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ContentView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderrightcolor"
- }
- ]
- },
- "8364": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ContentView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderbottomcolor"
- }
- ]
- },
- "8365": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ContentView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderleftcolor"
- }
- ]
- },
- "8366": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ContentView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderwidth"
- }
- ]
- },
- "8367": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ContentView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#bordertopwidth"
- }
- ]
- },
- "8368": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ContentView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderrightwidth"
- }
- ]
- },
- "8369": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ContentView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderbottomwidth"
- }
- ]
- },
- "8370": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ContentView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderleftwidth"
- }
- ]
- },
- "8371": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ContentView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderradius"
- }
- ]
- },
- "8372": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ContentView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#bordertopleftradius"
- }
- ]
- },
- "8373": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ContentView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#bordertoprightradius"
- }
- ]
- },
- "8374": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ContentView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderbottomrightradius"
- }
- ]
- },
- "8375": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ContentView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#borderbottomleftradius"
- }
- ]
- },
- "8376": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ContentView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#color"
- }
- ]
- },
- "8377": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ContentView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ContentView#accessible"
- }
- ]
- },
- "8378": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityhidden"
- }
- ]
- },
- "8379": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityidentifier"
- }
- ]
- },
- "8380": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityrole"
- }
- ]
- },
- "8381": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilitystate"
- }
- ]
- },
- "8382": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilitylabel"
- }
- ]
- },
- "8383": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityvalue"
- }
- ]
- },
- "8384": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilityhint"
- }
- ]
- },
- "8385": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#accessibilityliveregion"
- }
- ]
- },
- "8386": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilitylanguage"
- }
- ]
- },
- "8387": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ContentView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ContentView#accessibilitymediasession"
- }
- ]
- },
- "8388": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ContentView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ContentView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "8389": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ContentView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ContentView#iosaccessibilityminfontscale"
- }
- ]
- },
- "8390": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ContentView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ContentView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "8391": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ContentView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ContentView#androidcontentdescriptionupdated"
- }
- ]
- },
- "8392": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ContentView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#automationtext"
- }
- ]
- },
- "8393": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ContentView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ContentView#androidelevation"
- }
- ]
- },
- "8394": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ContentView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ContentView#androiddynamicelevationoffset"
- }
- ]
- },
- "8395": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ContentView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ContentView#background"
- }
- ]
- },
- "8396": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ContentView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#backgroundcolor"
- }
- ]
- },
- "8397": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ContentView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#backgroundimage"
- }
- ]
- },
- "8398": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ContentView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#boxshadow"
- }
- ]
- },
- "8399": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ContentView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ContentView#minwidth"
- }
- ]
- },
- "8400": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ContentView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ContentView#minheight"
- }
- ]
- },
- "8401": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ContentView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#width"
- }
- ]
- },
- "8402": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ContentView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#height"
- }
- ]
- },
- "8403": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ContentView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ContentView#margin"
- }
- ]
- },
- "8404": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ContentView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ContentView#marginleft"
- }
- ]
- },
- "8405": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ContentView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ContentView#margintop"
- }
- ]
- },
- "8406": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ContentView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ContentView#marginright"
- }
- ]
- },
- "8407": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ContentView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ContentView#marginbottom"
- }
- ]
- },
- "8408": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ContentView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ContentView#horizontalalignment"
- }
- ]
- },
- "8409": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ContentView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ContentView#verticalalignment"
- }
- ]
- },
- "8410": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ContentView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#visibility"
- }
- ]
- },
- "8411": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ContentView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ContentView#opacity"
- }
- ]
- },
- "8412": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ContentView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ContentView#rotate"
- }
- ]
- },
- "8413": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ContentView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ContentView#rotatex"
- }
- ]
- },
- "8414": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ContentView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ContentView#rotatey"
- }
- ]
- },
- "8415": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ContentView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ContentView#perspective"
- }
- ]
- },
- "8416": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ContentView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ContentView#translatex"
- }
- ]
- },
- "8417": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ContentView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ContentView#translatey"
- }
- ]
- },
- "8418": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ContentView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#scalex"
- }
- ]
- },
- "8419": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ContentView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#scaley"
- }
- ]
- },
- "8420": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ContentView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#originx"
- }
- ]
- },
- "8421": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ContentView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#originy"
- }
- ]
- },
- "8422": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ContentView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#isenabled"
- }
- ]
- },
- "8423": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ContentView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ContentView#isuserinteractionenabled"
- }
- ]
- },
- "8424": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ContentView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ContentView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "8425": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ContentView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ContentView#iosignoresafearea"
- }
- ]
- },
- "8426": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ContentView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ContentView#islayoutvalid"
- }
- ]
- },
- "8427": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ContentView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ContentView#csstype"
- }
- ]
- },
- "8428": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ContentView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#cssclasses"
- }
- ]
- },
- "8429": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ContentView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#csspseudoclasses"
- }
- ]
- },
- "8430": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ContentView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ContentView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8434": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ContentView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ContentView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8441": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ContentView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ContentView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "8443": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ContentView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ContentView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "8445": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ContentView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ContentView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "8447": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ContentView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ContentView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8451": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ContentView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ContentView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8457": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ContentView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ContentView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8461": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ContentView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ContentView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8467": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ContentView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ContentView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8469": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ContentView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ContentView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "8472": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ContentView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContentView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "8480": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ContentView#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContentView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContentView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContentView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ContentView#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/ContentView#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "8523": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ContentView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ContentView#modal"
- }
- ]
- },
- "8524": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ContentView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ContentView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "8527": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ContentView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ContentView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "8530": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ContentView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ContentView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "8537": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ContentView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ContentView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "8539": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ContentView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ContentView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "8541": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ContentView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ContentView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "8544": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ContentView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ContentView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "8546": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ContentView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ContentView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8558": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ContentView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ContentView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "8560": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ContentView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ContentView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8562": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ContentView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ContentView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "8564": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ContentView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ContentView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8570": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ContentView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ContentView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8572": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ContentView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ContentView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8574": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ContentView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ContentView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8576": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ContentView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ContentView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8582": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ContentView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ContentView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8585": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ContentView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ContentView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8588": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ContentView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ContentView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8657": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ContentView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ContentView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8663": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ContentView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ContentView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8668": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ContentView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ContentView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8670": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ContentView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ContentView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8672": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ContentView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ContentView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8675": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ContentView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ContentView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "8678": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ContentView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ContentView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "8682": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ContentView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#testid"
- }
- ]
- },
- "8683": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ContentView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#touchanimation"
- }
- ]
- },
- "8684": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ContentView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#ignoretouchanimation"
- }
- ]
- },
- "8685": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ContentView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#touchdelay"
- }
- ]
- },
- "8686": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ContentView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#closemodalcallback"
- }
- ]
- },
- "8687": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ContentView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ContentView#transitionid"
- }
- ]
- },
- "8688": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ContentView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#islayoutvalid"
- }
- ]
- },
- "8689": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ContentView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ContentView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8691": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ContentView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ContentView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8694": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ContentView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8702": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ContentView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8710": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ContentView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8718": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ContentView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ContentView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "8721": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ContentView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ContentView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8724": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ContentView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ContentView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8728": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ContentView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ContentView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8734": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ContentView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ContentView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8736": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ContentView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ContentView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8738": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ContentView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ContentView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8740": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ContentView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ContentView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8744": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ContentView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ContentView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8748": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ContentView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ContentView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "8752": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ContentView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ContentView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "8756": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ContentView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ContentView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8758": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ContentView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ContentView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8764": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ContentView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ContentView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8766": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ContentView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ContentView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8770": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ContentView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#domnode"
- }
- ]
- },
- "8771": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ContentView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#recyclenativeview"
- }
- ]
- },
- "8772": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ContentView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ContentView#viewcontroller"
- }
- ]
- },
- "8773": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ContentView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ContentView#nativeviewprotected"
- }
- ]
- },
- "8774": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ContentView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ContentView#parent"
- }
- ]
- },
- "8775": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ContentView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ContentView#iscollapsed"
- }
- ]
- },
- "8776": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ContentView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ContentView#id"
- }
- ]
- },
- "8777": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ContentView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ContentView#classname"
- }
- ]
- },
- "8778": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ContentView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ContentView#sharedtransitiontag"
- }
- ]
- },
- "8779": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ContentView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ContentView#sharedtransitionignore"
- }
- ]
- },
- "8780": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ContentView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#domid"
- }
- ]
- },
- "8781": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ContentView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#context"
- }
- ]
- },
- "8782": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ContentView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#isaddedtonativevisualtree"
- }
- ]
- },
- "8783": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ContentView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#cssstate"
- }
- ]
- },
- "8784": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ContentView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#stylescope"
- }
- ]
- },
- "8789": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ContentView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ContentView#suspendnativeupdatescount"
- }
- ]
- },
- "8790": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ContentView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#isstylescopehost"
- }
- ]
- },
- "8791": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ContentView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "8792": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ContentView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#left"
- }
- ]
- },
- "8793": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ContentView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#top"
- }
- ]
- },
- "8794": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveleft"
- }
- ]
- },
- "8795": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ContentView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivetop"
- }
- ]
- },
- "8796": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ContentView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#dock"
- }
- ]
- },
- "8797": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ContentView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#row"
- }
- ]
- },
- "8798": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ContentView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#col"
- }
- ]
- },
- "8799": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ContentView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#column"
- }
- ]
- },
- "8800": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ContentView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#rowspan"
- }
- ]
- },
- "8801": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ContentView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#colspan"
- }
- ]
- },
- "8802": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ContentView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#columnspan"
- }
- ]
- },
- "8803": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ContentView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#order"
- }
- ]
- },
- "8804": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ContentView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#flexgrow"
- }
- ]
- },
- "8805": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ContentView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#flexshrink"
- }
- ]
- },
- "8806": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ContentView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#flexwrapbefore"
- }
- ]
- },
- "8807": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ContentView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#alignself"
- }
- ]
- },
- "8808": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ContentView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#oldleft"
- }
- ]
- },
- "8809": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ContentView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#oldtop"
- }
- ]
- },
- "8810": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ContentView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#oldright"
- }
- ]
- },
- "8811": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ContentView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#oldbottom"
- }
- ]
- },
- "8812": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ContentView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "8813": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveminwidth"
- }
- ]
- },
- "8814": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveminheight"
- }
- ]
- },
- "8815": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ContentView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivewidth"
- }
- ]
- },
- "8816": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveheight"
- }
- ]
- },
- "8817": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ContentView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivemargintop"
- }
- ]
- },
- "8818": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ContentView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivemarginright"
- }
- ]
- },
- "8819": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ContentView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivemarginbottom"
- }
- ]
- },
- "8820": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ContentView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivemarginleft"
- }
- ]
- },
- "8821": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ContentView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivepaddingtop"
- }
- ]
- },
- "8822": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ContentView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivepaddingright"
- }
- ]
- },
- "8823": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ContentView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivepaddingbottom"
- }
- ]
- },
- "8824": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ContentView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivepaddingleft"
- }
- ]
- },
- "8825": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ContentView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectivebordertopwidth"
- }
- ]
- },
- "8826": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveborderrightwidth"
- }
- ]
- },
- "8827": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveborderbottomwidth"
- }
- ]
- },
- "8828": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ContentView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#effectiveborderleftwidth"
- }
- ]
- },
- "8829": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ContentView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#defaultpaddingtop"
- }
- ]
- },
- "8830": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ContentView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#defaultpaddingright"
- }
- ]
- },
- "8831": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ContentView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#defaultpaddingbottom"
- }
- ]
- },
- "8832": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ContentView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#defaultpaddingleft"
- }
- ]
- },
- "8833": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ContentView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/ContentView#ispaddingrelative"
- }
- ]
- },
- "8835": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ContentView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ContentView#reusable"
- }
- ]
- },
- "8836": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ContentView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ContentView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "8840": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ContentView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ContentView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "8844": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ContentView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ContentView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8846": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ContentView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ContentView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "8850": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ContentView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ContentView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8852": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ContentView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ContentView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8856": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ContentView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ContentView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "8860": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ContentView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ContentView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "8864": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ContentView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ContentView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "8866": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ContentView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ContentView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8868": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ContentView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ContentView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8872": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ContentView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ContentView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8874": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ContentView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ContentView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8876": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ContentView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ContentView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8879": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ContentView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ContentView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8882": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ContentView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ContentView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "8888": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ContentView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ContentView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8890": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ContentView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ContentView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8892": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ContentView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ContentView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8895": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ContentView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ContentView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8898": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ContentView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ContentView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8902": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ContentView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ContentView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8905": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ContentView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ContentView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8909": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ContentView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ContentView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8913": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ContentView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ContentView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8916": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ContentView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ContentView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "8918": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ContentView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ContentView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8921": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ContentView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ContentView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8924": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ContentView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ContentView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8927": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ContentView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ContentView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "8929": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ContentView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ContentView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8931": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ContentView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ContentView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8933": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ContentView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ContentView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8938": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ContentView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ContentView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8941": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ContentView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ContentView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8944": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ContentView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ContentView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8947": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ContentView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ContentView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "8950": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ContentView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ContentView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8954": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ContentView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ContentView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8957": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ContentView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ContentView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "8961": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ContentView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ContentView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8964": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ContentView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ContentView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8967": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ContentView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ContentView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8969": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ContentView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ContentView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "8973": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ContentView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ContentView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8976": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ContentView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ContentView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8978": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ContentView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ContentView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "8981": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ContentView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ContentView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "8984": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ContentView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ContentView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8988": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ContentView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ContentView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "8996": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ContentView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ContentView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9000": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ContentView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ContentView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9005": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ContentView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ContentView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "9008": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ContentView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ContentView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "9013": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ContentView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ContentView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ContentView.md b/content/api/class/ContentView.md
deleted file mode 100644
index e0127969..00000000
--- a/content/api/class/ContentView.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: ContentView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ContentView'
-layout: api
-seo:
- description: ContentView
----
-
-
-
-
-
-
-start(): any",
- "url": "/api/class/ControlStateChangeListener#start-start-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/control-state-change/index.d.ts",
- "line": 13,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "9076": {
- "name": "stop",
- "type": "Method",
- "url": "/api/class/ControlStateChangeListener#stop",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "stop(): any",
- "url": "/api/class/ControlStateChangeListener#stop-stop-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/control-state-change/index.d.ts",
- "line": 14,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ControlStateChangeListener.md b/content/api/class/ControlStateChangeListener.md
deleted file mode 100644
index 77cae944..00000000
--- a/content/api/class/ControlStateChangeListener.md
+++ /dev/null
@@ -1,78 +0,0 @@
----
-title: ControlStateChangeListener
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ControlStateChangeListener'
-layout: api
-seo:
- description: "An utility class used for supporting styling infrastructure.\nWARNING: This class is intended for IOS only."
----
-
-
-
-
-
-
-_getPropertyNames(): string[]",
- "url": "/api/class/CssAnimationProperty#getpropertynames-getpropertynames-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 114,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string[]"
- }
- ]
- },
- "12094": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/CssAnimationProperty#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new CssAnimationProperty<T, U>(options: CssAnimationPropertyOptions<T, U>): CssAnimationProperty<T, U>",
- "url": "/api/class/CssAnimationProperty#constructor-new-cssanimationproperty",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 111,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "options",
- "type": "CssAnimationPropertyOptions<T, U>",
- "flags": {}
- }
- ],
- "returns": "CssAnimationProperty<T, U>"
- }
- ]
- },
- "12099": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#name",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 95,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#name"
- }
- ]
- },
- "12100": {
- "name": "cssName",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#cssname",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 96,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#cssname"
- }
- ]
- },
- "12101": {
- "name": "cssLocalName",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#csslocalname",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssLocalName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 97,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#csslocalname"
- }
- ]
- },
- "12102": {
- "name": "getDefault",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#getdefault",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "getDefault: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 98,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#getdefault"
- }
- ]
- },
- "12103": {
- "name": "setNative",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#setnative",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "setNative: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 99,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#setnative"
- }
- ]
- },
- "12104": {
- "name": "register",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#register",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "register: (cls: {}) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 100,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#register"
- }
- ]
- },
- "12110": {
- "name": "keyframe",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#keyframe",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "keyframe: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 103,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#keyframe"
- }
- ]
- },
- "12111": {
- "name": "defaultValueKey",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#defaultvaluekey",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "defaultValueKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 104,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#defaultvaluekey"
- }
- ]
- },
- "12112": {
- "name": "key",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#key",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 105,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#key"
- }
- ]
- },
- "12114": {
- "name": "defaultValue",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#defaultvalue",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "defaultValue: U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 107,
- "character": 13
- }
- ],
- "url": "/api/class/CssAnimationProperty#defaultvalue"
- }
- ]
- },
- "12115": {
- "name": "isStyleProperty",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#isstyleproperty",
- "flags": {},
- "signatures": [
- {
- "code": "isStyleProperty: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 108,
- "character": 4
- }
- ],
- "url": "/api/class/CssAnimationProperty#isstyleproperty"
- }
- ]
- },
- "12116": {
- "name": "_valueConverter",
- "type": "Property",
- "url": "/api/class/CssAnimationProperty#valueconverter",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "_valueConverter?: (value: string) => any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "url": "/api/class/CssAnimationProperty#valueconverter"
- }
- ]
- },
- "12120": {
- "name": "_initDefaultNativeValue",
- "type": "Method",
- "url": "/api/class/CssAnimationProperty#initdefaultnativevalue",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_initDefaultNativeValue(target: T): void",
- "url": "/api/class/CssAnimationProperty#initdefaultnativevalue-initdefaultnativevalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 112,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "target",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12123": {
- "name": "isSet",
- "type": "Method",
- "url": "/api/class/CssAnimationProperty#isset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isSet(instance: T): boolean",
- "url": "/api/class/CssAnimationProperty#isset-isset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 115,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "instance",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/CssAnimationProperty.md b/content/api/class/CssAnimationProperty.md
deleted file mode 100644
index ec0beafd..00000000
--- a/content/api/class/CssAnimationProperty.md
+++ /dev/null
@@ -1,274 +0,0 @@
----
-title: CssAnimationProperty
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'CssAnimationProperty'
-layout: api
-seo:
- description: CssAnimationProperty
----
-
-
-
-
-
-
-name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 75,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#name"
- }
- ]
- },
- "12006": {
- "name": "cssName",
- "type": "Property",
- "url": "/api/class/CssProperty#cssname",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 76,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#cssname"
- }
- ]
- },
- "12007": {
- "name": "cssLocalName",
- "type": "Property",
- "url": "/api/class/CssProperty#csslocalname",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssLocalName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 77,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#csslocalname"
- }
- ]
- },
- "12008": {
- "name": "cssValueDescriptor",
- "type": "Property",
- "url": "/api/class/CssProperty#cssvaluedescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssValueDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 78,
- "character": 23
- }
- ],
- "url": "/api/class/CssProperty#cssvaluedescriptor"
- }
- ]
- },
- "12009": {
- "name": "localValueDescriptor",
- "type": "Property",
- "url": "/api/class/CssProperty#localvaluedescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "localValueDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 79,
- "character": 23
- }
- ],
- "url": "/api/class/CssProperty#localvaluedescriptor"
- }
- ]
- },
- "12010": {
- "name": "isStyleProperty",
- "type": "Property",
- "url": "/api/class/CssProperty#isstyleproperty",
- "flags": {},
- "signatures": [
- {
- "code": "isStyleProperty: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "url": "/api/class/CssProperty#isstyleproperty"
- }
- ]
- },
- "12011": {
- "name": "key",
- "type": "Property",
- "url": "/api/class/CssProperty#key",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 81,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#key"
- }
- ]
- },
- "12012": {
- "name": "getDefault",
- "type": "Property",
- "url": "/api/class/CssProperty#getdefault",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "getDefault: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 82,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#getdefault"
- }
- ]
- },
- "12013": {
- "name": "setNative",
- "type": "Property",
- "url": "/api/class/CssProperty#setnative",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "setNative: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 83,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#setnative"
- }
- ]
- },
- "12014": {
- "name": "sourceKey",
- "type": "Property",
- "url": "/api/class/CssProperty#sourcekey",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "sourceKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 84,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#sourcekey"
- }
- ]
- },
- "12015": {
- "name": "defaultValueKey",
- "type": "Property",
- "url": "/api/class/CssProperty#defaultvaluekey",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "defaultValueKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 85,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#defaultvaluekey"
- }
- ]
- },
- "12016": {
- "name": "defaultValue",
- "type": "Property",
- "url": "/api/class/CssProperty#defaultvalue",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "defaultValue: U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 86,
- "character": 13
- }
- ],
- "url": "/api/class/CssProperty#defaultvalue"
- }
- ]
- },
- "12017": {
- "name": "overrideHandlers",
- "type": "Property",
- "url": "/api/class/CssProperty#overridehandlers",
- "flags": {},
- "signatures": [
- {
- "code": "overrideHandlers: (options: CssPropertyOptions<T, U>) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 87,
- "character": 4
- }
- ],
- "url": "/api/class/CssProperty#overridehandlers"
- }
- ]
- },
- "12021": {
- "name": "register",
- "type": "Method",
- "url": "/api/class/CssProperty#register",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "register(cls: {}): void",
- "url": "/api/class/CssProperty#register-register-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 89,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cls",
- "type": "{}",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12026": {
- "name": "isSet",
- "type": "Method",
- "url": "/api/class/CssProperty#isset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isSet(instance: T): boolean",
- "url": "/api/class/CssProperty#isset-isset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "instance",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/CssProperty.md b/content/api/class/CssProperty.md
deleted file mode 100644
index d9a2c8b5..00000000
--- a/content/api/class/CssProperty.md
+++ /dev/null
@@ -1,260 +0,0 @@
----
-title: CssProperty
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'CssProperty'
-layout: api
-seo:
- description: CssProperty
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#layoutchangedevent"
- }
- ]
- },
- "11092": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#showingmodallyevent"
- }
- ]
- },
- "11093": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#shownmodallyevent"
- }
- ]
- },
- "11094": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityblurevent"
- }
- ]
- },
- "11095": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityfocusevent"
- }
- ]
- },
- "11096": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityfocuschangedevent"
- }
- ]
- },
- "11097": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/CustomLayoutView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "11106": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/CustomLayoutView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11114": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/CustomLayoutView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "11120": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/CustomLayoutView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "11124": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#accessibilityperformescapeevent"
- }
- ]
- },
- "11125": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#loadedevent"
- }
- ]
- },
- "11126": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#unloadedevent"
- }
- ]
- },
- "11127": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#createdevent"
- }
- ]
- },
- "11128": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#disposenativeviewevent"
- }
- ]
- },
- "11129": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#propertychangeevent"
- }
- ]
- },
- "11130": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11138": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11146": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11154": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11162": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11170": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/CustomLayoutView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new CustomLayoutView(): CustomLayoutView",
- "url": "/api/class/CustomLayoutView#constructor-new-customlayoutview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "CustomLayoutView"
- }
- ]
- },
- "11183": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iosoverflowsafearea"
- }
- ]
- },
- "11184": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#android"
- }
- ]
- },
- "11185": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#ios"
- }
- ]
- },
- "11186": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#bindingcontext"
- }
- ]
- },
- "11187": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#bordercolor"
- }
- ]
- },
- "11188": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#bordertopcolor"
- }
- ]
- },
- "11189": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderrightcolor"
- }
- ]
- },
- "11190": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderbottomcolor"
- }
- ]
- },
- "11191": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderleftcolor"
- }
- ]
- },
- "11192": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderwidth"
- }
- ]
- },
- "11193": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#bordertopwidth"
- }
- ]
- },
- "11194": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderrightwidth"
- }
- ]
- },
- "11195": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderbottomwidth"
- }
- ]
- },
- "11196": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderleftwidth"
- }
- ]
- },
- "11197": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderradius"
- }
- ]
- },
- "11198": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#bordertopleftradius"
- }
- ]
- },
- "11199": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#bordertoprightradius"
- }
- ]
- },
- "11200": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderbottomrightradius"
- }
- ]
- },
- "11201": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#borderbottomleftradius"
- }
- ]
- },
- "11202": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#color"
- }
- ]
- },
- "11203": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessible"
- }
- ]
- },
- "11204": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityhidden"
- }
- ]
- },
- "11205": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityidentifier"
- }
- ]
- },
- "11206": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityrole"
- }
- ]
- },
- "11207": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilitystate"
- }
- ]
- },
- "11208": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilitylabel"
- }
- ]
- },
- "11209": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityvalue"
- }
- ]
- },
- "11210": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilityhint"
- }
- ]
- },
- "11211": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#accessibilityliveregion"
- }
- ]
- },
- "11212": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilitylanguage"
- }
- ]
- },
- "11213": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#accessibilitymediasession"
- }
- ]
- },
- "11214": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "11215": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iosaccessibilityminfontscale"
- }
- ]
- },
- "11216": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "11217": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#androidcontentdescriptionupdated"
- }
- ]
- },
- "11218": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#automationtext"
- }
- ]
- },
- "11219": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#androidelevation"
- }
- ]
- },
- "11220": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#androiddynamicelevationoffset"
- }
- ]
- },
- "11221": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#background"
- }
- ]
- },
- "11222": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#backgroundcolor"
- }
- ]
- },
- "11223": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#backgroundimage"
- }
- ]
- },
- "11224": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#boxshadow"
- }
- ]
- },
- "11225": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#minwidth"
- }
- ]
- },
- "11226": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#minheight"
- }
- ]
- },
- "11227": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#width"
- }
- ]
- },
- "11228": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#height"
- }
- ]
- },
- "11229": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#margin"
- }
- ]
- },
- "11230": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#marginleft"
- }
- ]
- },
- "11231": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#margintop"
- }
- ]
- },
- "11232": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#marginright"
- }
- ]
- },
- "11233": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#marginbottom"
- }
- ]
- },
- "11234": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#horizontalalignment"
- }
- ]
- },
- "11235": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#verticalalignment"
- }
- ]
- },
- "11236": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#visibility"
- }
- ]
- },
- "11237": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#opacity"
- }
- ]
- },
- "11238": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#rotate"
- }
- ]
- },
- "11239": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#rotatex"
- }
- ]
- },
- "11240": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#rotatey"
- }
- ]
- },
- "11241": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#perspective"
- }
- ]
- },
- "11242": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#translatex"
- }
- ]
- },
- "11243": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#translatey"
- }
- ]
- },
- "11244": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#scalex"
- }
- ]
- },
- "11245": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#scaley"
- }
- ]
- },
- "11246": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#originx"
- }
- ]
- },
- "11247": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#originy"
- }
- ]
- },
- "11248": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#isenabled"
- }
- ]
- },
- "11249": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#isuserinteractionenabled"
- }
- ]
- },
- "11250": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "11251": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iosignoresafearea"
- }
- ]
- },
- "11252": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#islayoutvalid"
- }
- ]
- },
- "11253": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#csstype"
- }
- ]
- },
- "11254": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#cssclasses"
- }
- ]
- },
- "11255": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#csspseudoclasses"
- }
- ]
- },
- "11256": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/CustomLayoutView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11260": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/CustomLayoutView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11267": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/CustomLayoutView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "11269": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/CustomLayoutView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "11271": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/CustomLayoutView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "11273": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/CustomLayoutView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11277": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/CustomLayoutView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11283": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/CustomLayoutView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11287": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/CustomLayoutView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11293": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/CustomLayoutView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "11295": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/CustomLayoutView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "11298": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/CustomLayoutView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "11306": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/CustomLayoutView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/CustomLayoutView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/CustomLayoutView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/CustomLayoutView#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/CustomLayoutView#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "11349": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#modal"
- }
- ]
- },
- "11350": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/CustomLayoutView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "11353": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/CustomLayoutView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "11356": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/CustomLayoutView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "11363": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/CustomLayoutView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "11365": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/CustomLayoutView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "11367": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/CustomLayoutView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "11370": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/CustomLayoutView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "11372": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/CustomLayoutView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "11384": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/CustomLayoutView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "11386": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/CustomLayoutView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "11388": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/CustomLayoutView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "11390": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/CustomLayoutView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11396": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/CustomLayoutView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11398": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/CustomLayoutView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "11400": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/CustomLayoutView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11402": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/CustomLayoutView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11408": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/CustomLayoutView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11411": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/CustomLayoutView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11414": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/CustomLayoutView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11483": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/CustomLayoutView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "11489": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/CustomLayoutView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11494": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/CustomLayoutView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11496": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/CustomLayoutView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11498": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/CustomLayoutView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "11501": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/CustomLayoutView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "11504": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/CustomLayoutView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "11508": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#testid"
- }
- ]
- },
- "11509": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#touchanimation"
- }
- ]
- },
- "11510": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#ignoretouchanimation"
- }
- ]
- },
- "11511": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#touchdelay"
- }
- ]
- },
- "11512": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#closemodalcallback"
- }
- ]
- },
- "11513": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#transitionid"
- }
- ]
- },
- "11514": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#islayoutvalid"
- }
- ]
- },
- "11515": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/CustomLayoutView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11517": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/CustomLayoutView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11520": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11528": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11536": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11544": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/CustomLayoutView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "11547": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/CustomLayoutView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11550": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/CustomLayoutView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11554": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/CustomLayoutView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11560": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/CustomLayoutView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11562": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/CustomLayoutView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11564": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/CustomLayoutView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11566": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/CustomLayoutView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "11570": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/CustomLayoutView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "11574": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/CustomLayoutView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "11578": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/CustomLayoutView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "11582": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/CustomLayoutView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11584": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/CustomLayoutView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11590": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/CustomLayoutView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11592": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/CustomLayoutView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11596": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#domnode"
- }
- ]
- },
- "11597": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#recyclenativeview"
- }
- ]
- },
- "11598": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#viewcontroller"
- }
- ]
- },
- "11599": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#nativeviewprotected"
- }
- ]
- },
- "11600": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#parent"
- }
- ]
- },
- "11601": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#iscollapsed"
- }
- ]
- },
- "11602": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#id"
- }
- ]
- },
- "11603": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#classname"
- }
- ]
- },
- "11604": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#sharedtransitiontag"
- }
- ]
- },
- "11605": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#sharedtransitionignore"
- }
- ]
- },
- "11606": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#domid"
- }
- ]
- },
- "11607": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#context"
- }
- ]
- },
- "11608": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#isaddedtonativevisualtree"
- }
- ]
- },
- "11609": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#cssstate"
- }
- ]
- },
- "11610": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#stylescope"
- }
- ]
- },
- "11615": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#suspendnativeupdatescount"
- }
- ]
- },
- "11616": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#isstylescopehost"
- }
- ]
- },
- "11617": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "11618": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#left"
- }
- ]
- },
- "11619": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#top"
- }
- ]
- },
- "11620": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveleft"
- }
- ]
- },
- "11621": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivetop"
- }
- ]
- },
- "11622": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#dock"
- }
- ]
- },
- "11623": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#row"
- }
- ]
- },
- "11624": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#col"
- }
- ]
- },
- "11625": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#column"
- }
- ]
- },
- "11626": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#rowspan"
- }
- ]
- },
- "11627": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#colspan"
- }
- ]
- },
- "11628": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#columnspan"
- }
- ]
- },
- "11629": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#order"
- }
- ]
- },
- "11630": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#flexgrow"
- }
- ]
- },
- "11631": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#flexshrink"
- }
- ]
- },
- "11632": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#flexwrapbefore"
- }
- ]
- },
- "11633": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#alignself"
- }
- ]
- },
- "11634": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#oldleft"
- }
- ]
- },
- "11635": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#oldtop"
- }
- ]
- },
- "11636": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#oldright"
- }
- ]
- },
- "11637": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#oldbottom"
- }
- ]
- },
- "11638": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "11639": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveminwidth"
- }
- ]
- },
- "11640": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveminheight"
- }
- ]
- },
- "11641": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivewidth"
- }
- ]
- },
- "11642": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveheight"
- }
- ]
- },
- "11643": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivemargintop"
- }
- ]
- },
- "11644": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivemarginright"
- }
- ]
- },
- "11645": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivemarginbottom"
- }
- ]
- },
- "11646": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivemarginleft"
- }
- ]
- },
- "11647": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivepaddingtop"
- }
- ]
- },
- "11648": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivepaddingright"
- }
- ]
- },
- "11649": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivepaddingbottom"
- }
- ]
- },
- "11650": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivepaddingleft"
- }
- ]
- },
- "11651": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectivebordertopwidth"
- }
- ]
- },
- "11652": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveborderrightwidth"
- }
- ]
- },
- "11653": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveborderbottomwidth"
- }
- ]
- },
- "11654": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#effectiveborderleftwidth"
- }
- ]
- },
- "11655": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#defaultpaddingtop"
- }
- ]
- },
- "11656": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#defaultpaddingright"
- }
- ]
- },
- "11657": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#defaultpaddingbottom"
- }
- ]
- },
- "11658": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#defaultpaddingleft"
- }
- ]
- },
- "11659": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "url": "/api/class/CustomLayoutView#ispaddingrelative"
- }
- ]
- },
- "11661": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/CustomLayoutView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/CustomLayoutView#reusable"
- }
- ]
- },
- "11662": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/CustomLayoutView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "11666": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/CustomLayoutView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "11670": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/CustomLayoutView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "11672": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/CustomLayoutView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "11676": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/CustomLayoutView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "11678": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/CustomLayoutView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "11682": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/CustomLayoutView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "11686": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/CustomLayoutView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "11690": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/CustomLayoutView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/CustomLayoutView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "11692": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/CustomLayoutView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11694": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/CustomLayoutView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11698": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/CustomLayoutView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11700": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/CustomLayoutView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11702": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/CustomLayoutView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11705": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/CustomLayoutView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11708": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/CustomLayoutView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "11714": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/CustomLayoutView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11716": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/CustomLayoutView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11718": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/CustomLayoutView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11721": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/CustomLayoutView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11724": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/CustomLayoutView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11728": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/CustomLayoutView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11731": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/CustomLayoutView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11735": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/CustomLayoutView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11739": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/CustomLayoutView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11742": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/CustomLayoutView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "11744": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/CustomLayoutView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11747": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/CustomLayoutView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11750": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/CustomLayoutView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11753": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/CustomLayoutView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "11755": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/CustomLayoutView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11757": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/CustomLayoutView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11759": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/CustomLayoutView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11764": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/CustomLayoutView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11767": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/CustomLayoutView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11770": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/CustomLayoutView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11773": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/CustomLayoutView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "11776": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/CustomLayoutView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "11780": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/CustomLayoutView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11783": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/CustomLayoutView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "11787": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/CustomLayoutView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11790": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/CustomLayoutView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11793": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/CustomLayoutView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11795": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/CustomLayoutView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "11799": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/CustomLayoutView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11802": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/CustomLayoutView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11804": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/CustomLayoutView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "11807": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/CustomLayoutView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "11810": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/CustomLayoutView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11814": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/CustomLayoutView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11822": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/CustomLayoutView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11826": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/CustomLayoutView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11831": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/CustomLayoutView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "11834": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/CustomLayoutView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "11839": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/CustomLayoutView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/CustomLayoutView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContainerView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/CustomLayoutView.md b/content/api/class/CustomLayoutView.md
deleted file mode 100644
index ab3d0740..00000000
--- a/content/api/class/CustomLayoutView.md
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: CustomLayoutView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'CustomLayoutView'
-layout: api
-seo:
- description: "Base class for all UI components that implement custom layouts."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/DatePicker#layoutchangedevent"
- }
- ]
- },
- "12167": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/DatePicker#showingmodallyevent"
- }
- ]
- },
- "12168": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/DatePicker#shownmodallyevent"
- }
- ]
- },
- "12169": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityblurevent"
- }
- ]
- },
- "12170": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityfocusevent"
- }
- ]
- },
- "12171": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityfocuschangedevent"
- }
- ]
- },
- "12172": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/DatePicker#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/DatePicker#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "12181": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/DatePicker#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/DatePicker#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12189": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/DatePicker#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/DatePicker#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "12195": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/DatePicker#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/DatePicker#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "12199": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#accessibilityperformescapeevent"
- }
- ]
- },
- "12200": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/DatePicker#loadedevent"
- }
- ]
- },
- "12201": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/DatePicker#unloadedevent"
- }
- ]
- },
- "12202": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/DatePicker#createdevent"
- }
- ]
- },
- "12203": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/DatePicker#disposenativeviewevent"
- }
- ]
- },
- "12204": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/DatePicker#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/DatePicker#propertychangeevent"
- }
- ]
- },
- "12205": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/DatePicker#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12213": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/DatePicker#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12221": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/DatePicker#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12229": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/DatePicker#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12237": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/DatePicker#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12245": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/DatePicker#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new DatePicker(): DatePicker",
- "url": "/api/class/DatePicker#constructor-new-datepicker",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "DatePicker"
- }
- ]
- },
- "12247": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/DatePicker#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android.widget.DatePicker](http://developer.android.com/reference/android/widget/DatePicker.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android.widget.DatePicker](http://developer.android.com/reference/android/widget/DatePicker.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/DatePicker#android"
- }
- ]
- },
- "12248": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/DatePicker#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIDatePicker](http://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIDatePicker_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIDatePicker](http://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIDatePicker_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/DatePicker#ios"
- }
- ]
- },
- "12249": {
- "name": "year",
- "type": "Property",
- "url": "/api/class/DatePicker#year",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the year."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "year: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the year."
- }
- ]
- },
- "url": "/api/class/DatePicker#year"
- }
- ]
- },
- "12250": {
- "name": "month",
- "type": "Property",
- "url": "/api/class/DatePicker#month",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the month. The months start from 1."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "month: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the month. The months start from 1."
- }
- ]
- },
- "url": "/api/class/DatePicker#month"
- }
- ]
- },
- "12251": {
- "name": "day",
- "type": "Property",
- "url": "/api/class/DatePicker#day",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the day. The days start from 1."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "day: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the day. The days start from 1."
- }
- ]
- },
- "url": "/api/class/DatePicker#day"
- }
- ]
- },
- "12252": {
- "name": "date",
- "type": "Property",
- "url": "/api/class/DatePicker#date",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the entire date."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "date: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the entire date."
- }
- ]
- },
- "url": "/api/class/DatePicker#date"
- }
- ]
- },
- "12253": {
- "name": "maxDate",
- "type": "Property",
- "url": "/api/class/DatePicker#maxdate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the max date."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxDate: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the max date."
- }
- ]
- },
- "url": "/api/class/DatePicker#maxdate"
- }
- ]
- },
- "12254": {
- "name": "minDate",
- "type": "Property",
- "url": "/api/class/DatePicker#mindate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the min date."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minDate: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the min date."
- }
- ]
- },
- "url": "/api/class/DatePicker#mindate"
- }
- ]
- },
- "12255": {
- "name": "iosPreferredDatePickerStyle",
- "type": "Property",
- "url": "/api/class/DatePicker#iospreferreddatepickerstyle",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIDatePickerStyle of the date picker in iOS 13.4+. Defaults to 0.\nValid values are numbers:\n - 0: automatic (system picks the concrete style based on the current platform and date picker mode)\n - 1: wheels (the date picker displays as a wheel picker)\n - 2: compact (the date picker displays as a label that when tapped displays a calendar-style editor)\n - 3: inline (the date pickers displays as an inline, editable field)"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosPreferredDatePickerStyle: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/date-picker/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIDatePickerStyle of the date picker in iOS 13.4+. Defaults to 0.\nValid values are numbers:\n - 0: automatic (system picks the concrete style based on the current platform and date picker mode)\n - 1: wheels (the date picker displays as a wheel picker)\n - 2: compact (the date picker displays as a label that when tapped displays a calendar-style editor)\n - 3: inline (the date pickers displays as an inline, editable field)"
- }
- ]
- },
- "url": "/api/class/DatePicker#iospreferreddatepickerstyle"
- }
- ]
- },
- "12256": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/DatePicker#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/DatePicker#bindingcontext"
- }
- ]
- },
- "12257": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/DatePicker#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#bordercolor"
- }
- ]
- },
- "12258": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/DatePicker#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#bordertopcolor"
- }
- ]
- },
- "12259": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/DatePicker#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderrightcolor"
- }
- ]
- },
- "12260": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/DatePicker#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderbottomcolor"
- }
- ]
- },
- "12261": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/DatePicker#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderleftcolor"
- }
- ]
- },
- "12262": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderwidth"
- }
- ]
- },
- "12263": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#bordertopwidth"
- }
- ]
- },
- "12264": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderrightwidth"
- }
- ]
- },
- "12265": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderbottomwidth"
- }
- ]
- },
- "12266": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderleftwidth"
- }
- ]
- },
- "12267": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/DatePicker#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderradius"
- }
- ]
- },
- "12268": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/DatePicker#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#bordertopleftradius"
- }
- ]
- },
- "12269": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/DatePicker#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#bordertoprightradius"
- }
- ]
- },
- "12270": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/DatePicker#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderbottomrightradius"
- }
- ]
- },
- "12271": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/DatePicker#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#borderbottomleftradius"
- }
- ]
- },
- "12272": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/DatePicker#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#color"
- }
- ]
- },
- "12273": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/DatePicker#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessible"
- }
- ]
- },
- "12274": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityhidden"
- }
- ]
- },
- "12275": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityidentifier"
- }
- ]
- },
- "12276": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityrole"
- }
- ]
- },
- "12277": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilitystate"
- }
- ]
- },
- "12278": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilitylabel"
- }
- ]
- },
- "12279": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityvalue"
- }
- ]
- },
- "12280": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilityhint"
- }
- ]
- },
- "12281": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#accessibilityliveregion"
- }
- ]
- },
- "12282": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilitylanguage"
- }
- ]
- },
- "12283": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/DatePicker#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/DatePicker#accessibilitymediasession"
- }
- ]
- },
- "12284": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/DatePicker#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/DatePicker#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "12285": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/DatePicker#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/DatePicker#iosaccessibilityminfontscale"
- }
- ]
- },
- "12286": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/DatePicker#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/DatePicker#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "12287": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/DatePicker#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/DatePicker#androidcontentdescriptionupdated"
- }
- ]
- },
- "12288": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/DatePicker#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#automationtext"
- }
- ]
- },
- "12289": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/DatePicker#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/DatePicker#androidelevation"
- }
- ]
- },
- "12290": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/DatePicker#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/DatePicker#androiddynamicelevationoffset"
- }
- ]
- },
- "12291": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/DatePicker#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/DatePicker#background"
- }
- ]
- },
- "12292": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/DatePicker#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#backgroundcolor"
- }
- ]
- },
- "12293": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/DatePicker#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#backgroundimage"
- }
- ]
- },
- "12294": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/DatePicker#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#boxshadow"
- }
- ]
- },
- "12295": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/DatePicker#minwidth"
- }
- ]
- },
- "12296": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/DatePicker#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/DatePicker#minheight"
- }
- ]
- },
- "12297": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/DatePicker#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#width"
- }
- ]
- },
- "12298": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/DatePicker#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#height"
- }
- ]
- },
- "12299": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/DatePicker#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/DatePicker#margin"
- }
- ]
- },
- "12300": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/DatePicker#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/DatePicker#marginleft"
- }
- ]
- },
- "12301": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/DatePicker#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/DatePicker#margintop"
- }
- ]
- },
- "12302": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/DatePicker#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/DatePicker#marginright"
- }
- ]
- },
- "12303": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/DatePicker#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/DatePicker#marginbottom"
- }
- ]
- },
- "12304": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/DatePicker#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/DatePicker#horizontalalignment"
- }
- ]
- },
- "12305": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/DatePicker#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/DatePicker#verticalalignment"
- }
- ]
- },
- "12306": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/DatePicker#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#visibility"
- }
- ]
- },
- "12307": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/DatePicker#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/DatePicker#opacity"
- }
- ]
- },
- "12308": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/DatePicker#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/DatePicker#rotate"
- }
- ]
- },
- "12309": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/DatePicker#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/DatePicker#rotatex"
- }
- ]
- },
- "12310": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/DatePicker#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/DatePicker#rotatey"
- }
- ]
- },
- "12311": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/DatePicker#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/DatePicker#perspective"
- }
- ]
- },
- "12312": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/DatePicker#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/DatePicker#translatex"
- }
- ]
- },
- "12313": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/DatePicker#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/DatePicker#translatey"
- }
- ]
- },
- "12314": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/DatePicker#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#scalex"
- }
- ]
- },
- "12315": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/DatePicker#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#scaley"
- }
- ]
- },
- "12316": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/DatePicker#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#originx"
- }
- ]
- },
- "12317": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/DatePicker#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#originy"
- }
- ]
- },
- "12318": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/DatePicker#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#isenabled"
- }
- ]
- },
- "12319": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/DatePicker#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/DatePicker#isuserinteractionenabled"
- }
- ]
- },
- "12320": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/DatePicker#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/DatePicker#iosoverflowsafearea"
- }
- ]
- },
- "12321": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/DatePicker#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/DatePicker#iosoverflowsafeareaenabled"
- }
- ]
- },
- "12322": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/DatePicker#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/DatePicker#iosignoresafearea"
- }
- ]
- },
- "12323": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/DatePicker#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/DatePicker#islayoutvalid"
- }
- ]
- },
- "12324": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/DatePicker#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/DatePicker#csstype"
- }
- ]
- },
- "12325": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/DatePicker#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#cssclasses"
- }
- ]
- },
- "12326": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/DatePicker#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#csspseudoclasses"
- }
- ]
- },
- "12327": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/DatePicker#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/DatePicker#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12331": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/DatePicker#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/DatePicker#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12338": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/DatePicker#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/DatePicker#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "12340": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/DatePicker#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/DatePicker#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "12342": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/DatePicker#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/DatePicker#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "12344": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/DatePicker#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/DatePicker#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12348": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/DatePicker#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/DatePicker#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12354": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/DatePicker#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/DatePicker#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12358": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/DatePicker#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/DatePicker#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12364": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/DatePicker#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/DatePicker#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "12366": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/DatePicker#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/DatePicker#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "12369": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/DatePicker#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DatePicker#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "12377": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/DatePicker#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DatePicker#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DatePicker#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DatePicker#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DatePicker#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/DatePicker#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "12420": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/DatePicker#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/DatePicker#modal"
- }
- ]
- },
- "12421": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/DatePicker#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/DatePicker#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "12424": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/DatePicker#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/DatePicker#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "12427": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/DatePicker#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/DatePicker#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "12434": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/DatePicker#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/DatePicker#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "12436": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/DatePicker#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/DatePicker#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "12438": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/DatePicker#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/DatePicker#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "12441": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/DatePicker#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/DatePicker#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "12443": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/DatePicker#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/DatePicker#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "12455": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/DatePicker#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/DatePicker#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "12457": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/DatePicker#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/DatePicker#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "12459": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/DatePicker#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/DatePicker#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "12461": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/DatePicker#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/DatePicker#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12467": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/DatePicker#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/DatePicker#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12469": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/DatePicker#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/DatePicker#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "12471": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/DatePicker#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/DatePicker#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12473": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/DatePicker#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/DatePicker#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12479": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/DatePicker#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/DatePicker#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12482": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/DatePicker#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/DatePicker#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12485": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/DatePicker#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/DatePicker#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12554": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/DatePicker#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/DatePicker#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "12560": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/DatePicker#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/DatePicker#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12565": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/DatePicker#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/DatePicker#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12567": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/DatePicker#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/DatePicker#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12569": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/DatePicker#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/DatePicker#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "12572": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/DatePicker#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/DatePicker#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "12575": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/DatePicker#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/DatePicker#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "12579": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/DatePicker#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#testid"
- }
- ]
- },
- "12580": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/DatePicker#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#touchanimation"
- }
- ]
- },
- "12581": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/DatePicker#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#ignoretouchanimation"
- }
- ]
- },
- "12582": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/DatePicker#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#touchdelay"
- }
- ]
- },
- "12583": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/DatePicker#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#closemodalcallback"
- }
- ]
- },
- "12584": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/DatePicker#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/DatePicker#transitionid"
- }
- ]
- },
- "12585": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/DatePicker#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#islayoutvalid"
- }
- ]
- },
- "12586": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/DatePicker#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/DatePicker#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12588": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/DatePicker#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/DatePicker#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12591": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/DatePicker#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12599": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/DatePicker#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12607": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/DatePicker#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12615": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/DatePicker#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/DatePicker#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "12618": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/DatePicker#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/DatePicker#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12621": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/DatePicker#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/DatePicker#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12625": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/DatePicker#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/DatePicker#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12631": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/DatePicker#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/DatePicker#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12633": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/DatePicker#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/DatePicker#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12635": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/DatePicker#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/DatePicker#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12637": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/DatePicker#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/DatePicker#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "12641": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/DatePicker#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/DatePicker#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "12645": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/DatePicker#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/DatePicker#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "12649": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/DatePicker#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/DatePicker#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "12653": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/DatePicker#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/DatePicker#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12655": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/DatePicker#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/DatePicker#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12661": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/DatePicker#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/DatePicker#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12663": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/DatePicker#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/DatePicker#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12667": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/DatePicker#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#domnode"
- }
- ]
- },
- "12668": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/DatePicker#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#recyclenativeview"
- }
- ]
- },
- "12669": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/DatePicker#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/DatePicker#viewcontroller"
- }
- ]
- },
- "12670": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/DatePicker#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/DatePicker#nativeviewprotected"
- }
- ]
- },
- "12671": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/DatePicker#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/DatePicker#parent"
- }
- ]
- },
- "12672": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/DatePicker#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/DatePicker#iscollapsed"
- }
- ]
- },
- "12673": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/DatePicker#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/DatePicker#id"
- }
- ]
- },
- "12674": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/DatePicker#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/DatePicker#classname"
- }
- ]
- },
- "12675": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/DatePicker#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/DatePicker#sharedtransitiontag"
- }
- ]
- },
- "12676": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/DatePicker#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/DatePicker#sharedtransitionignore"
- }
- ]
- },
- "12677": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/DatePicker#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#domid"
- }
- ]
- },
- "12678": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/DatePicker#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#context"
- }
- ]
- },
- "12679": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/DatePicker#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#isaddedtonativevisualtree"
- }
- ]
- },
- "12680": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/DatePicker#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#cssstate"
- }
- ]
- },
- "12681": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/DatePicker#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#stylescope"
- }
- ]
- },
- "12686": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/DatePicker#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/DatePicker#suspendnativeupdatescount"
- }
- ]
- },
- "12687": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/DatePicker#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#isstylescopehost"
- }
- ]
- },
- "12688": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/DatePicker#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "12689": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/DatePicker#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#left"
- }
- ]
- },
- "12690": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/DatePicker#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#top"
- }
- ]
- },
- "12691": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveleft"
- }
- ]
- },
- "12692": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivetop"
- }
- ]
- },
- "12693": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/DatePicker#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#dock"
- }
- ]
- },
- "12694": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/DatePicker#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#row"
- }
- ]
- },
- "12695": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/DatePicker#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#col"
- }
- ]
- },
- "12696": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/DatePicker#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#column"
- }
- ]
- },
- "12697": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/DatePicker#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#rowspan"
- }
- ]
- },
- "12698": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/DatePicker#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#colspan"
- }
- ]
- },
- "12699": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/DatePicker#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#columnspan"
- }
- ]
- },
- "12700": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/DatePicker#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#order"
- }
- ]
- },
- "12701": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/DatePicker#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#flexgrow"
- }
- ]
- },
- "12702": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/DatePicker#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#flexshrink"
- }
- ]
- },
- "12703": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/DatePicker#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#flexwrapbefore"
- }
- ]
- },
- "12704": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/DatePicker#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#alignself"
- }
- ]
- },
- "12705": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/DatePicker#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#oldleft"
- }
- ]
- },
- "12706": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/DatePicker#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#oldtop"
- }
- ]
- },
- "12707": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/DatePicker#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#oldright"
- }
- ]
- },
- "12708": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/DatePicker#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#oldbottom"
- }
- ]
- },
- "12709": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/DatePicker#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#ignoreflexminwidthheightreset"
- }
- ]
- },
- "12710": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveminwidth"
- }
- ]
- },
- "12711": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveminheight"
- }
- ]
- },
- "12712": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivewidth"
- }
- ]
- },
- "12713": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveheight"
- }
- ]
- },
- "12714": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivemargintop"
- }
- ]
- },
- "12715": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivemarginright"
- }
- ]
- },
- "12716": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivemarginbottom"
- }
- ]
- },
- "12717": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivemarginleft"
- }
- ]
- },
- "12718": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivepaddingtop"
- }
- ]
- },
- "12719": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivepaddingright"
- }
- ]
- },
- "12720": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivepaddingbottom"
- }
- ]
- },
- "12721": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivepaddingleft"
- }
- ]
- },
- "12722": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectivebordertopwidth"
- }
- ]
- },
- "12723": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveborderrightwidth"
- }
- ]
- },
- "12724": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveborderbottomwidth"
- }
- ]
- },
- "12725": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/DatePicker#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#effectiveborderleftwidth"
- }
- ]
- },
- "12726": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/DatePicker#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#defaultpaddingtop"
- }
- ]
- },
- "12727": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/DatePicker#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#defaultpaddingright"
- }
- ]
- },
- "12728": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/DatePicker#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#defaultpaddingbottom"
- }
- ]
- },
- "12729": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/DatePicker#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#defaultpaddingleft"
- }
- ]
- },
- "12730": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/DatePicker#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/DatePicker#ispaddingrelative"
- }
- ]
- },
- "12732": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/DatePicker#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/DatePicker#reusable"
- }
- ]
- },
- "12733": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/DatePicker#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/DatePicker#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "12737": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/DatePicker#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/DatePicker#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "12741": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/DatePicker#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/DatePicker#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "12743": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/DatePicker#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/DatePicker#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "12747": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/DatePicker#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/DatePicker#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "12749": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/DatePicker#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/DatePicker#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "12753": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/DatePicker#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/DatePicker#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "12757": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/DatePicker#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/DatePicker#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "12761": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/DatePicker#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/DatePicker#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "12763": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/DatePicker#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/DatePicker#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12765": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/DatePicker#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/DatePicker#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12769": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/DatePicker#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/DatePicker#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12771": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/DatePicker#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/DatePicker#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12773": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/DatePicker#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/DatePicker#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12776": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/DatePicker#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/DatePicker#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12779": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/DatePicker#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/DatePicker#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "12785": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/DatePicker#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/DatePicker#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12787": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/DatePicker#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/DatePicker#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12789": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/DatePicker#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/DatePicker#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12792": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/DatePicker#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/DatePicker#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12795": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/DatePicker#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/DatePicker#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12799": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/DatePicker#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/DatePicker#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12802": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/DatePicker#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/DatePicker#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12806": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/DatePicker#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/DatePicker#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12810": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/DatePicker#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/DatePicker#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12813": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/DatePicker#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/DatePicker#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "12815": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/DatePicker#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/DatePicker#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12818": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/DatePicker#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/DatePicker#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12821": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/DatePicker#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/DatePicker#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12824": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/DatePicker#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/DatePicker#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "12826": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/DatePicker#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/DatePicker#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12828": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/DatePicker#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/DatePicker#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12830": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/DatePicker#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/DatePicker#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12835": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/DatePicker#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/DatePicker#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12838": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/DatePicker#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/DatePicker#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12841": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/DatePicker#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/DatePicker#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12844": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/DatePicker#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/DatePicker#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "12847": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/DatePicker#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/DatePicker#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "12851": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/DatePicker#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/DatePicker#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12854": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/DatePicker#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/DatePicker#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "12858": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/DatePicker#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/DatePicker#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12861": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/DatePicker#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/DatePicker#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12864": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/DatePicker#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/DatePicker#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12866": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/DatePicker#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/DatePicker#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "12870": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/DatePicker#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/DatePicker#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12873": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/DatePicker#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/DatePicker#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12875": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/DatePicker#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/DatePicker#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "12878": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/DatePicker#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/DatePicker#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "12881": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/DatePicker#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/DatePicker#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12885": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/DatePicker#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DatePicker#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12893": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/DatePicker#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/DatePicker#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12897": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/DatePicker#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/DatePicker#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12902": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/DatePicker#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/DatePicker#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "12905": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/DatePicker#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/DatePicker#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "12910": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/DatePicker#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/DatePicker#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/DatePicker.md b/content/api/class/DatePicker.md
deleted file mode 100644
index a0395beb..00000000
--- a/content/api/class/DatePicker.md
+++ /dev/null
@@ -1,176 +0,0 @@
----
-title: DatePicker
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'DatePicker'
-layout: api
-seo:
- description: "Represents an date picker."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/DockLayout#layoutchangedevent"
- }
- ]
- },
- "35130": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/DockLayout#showingmodallyevent"
- }
- ]
- },
- "35131": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/DockLayout#shownmodallyevent"
- }
- ]
- },
- "35132": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityblurevent"
- }
- ]
- },
- "35133": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityfocusevent"
- }
- ]
- },
- "35134": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "35135": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/DockLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/DockLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "35144": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/DockLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/DockLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35152": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/DockLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/DockLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35158": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/DockLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/DockLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35162": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "35163": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/DockLayout#loadedevent"
- }
- ]
- },
- "35164": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/DockLayout#unloadedevent"
- }
- ]
- },
- "35165": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/DockLayout#createdevent"
- }
- ]
- },
- "35166": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/DockLayout#disposenativeviewevent"
- }
- ]
- },
- "35167": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/DockLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/DockLayout#propertychangeevent"
- }
- ]
- },
- "35168": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/DockLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35176": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/DockLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35184": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/DockLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35192": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/DockLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35200": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/DockLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35208": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/DockLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new DockLayout(): DockLayout",
- "url": "/api/class/DockLayout#constructor-new-docklayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "DockLayout"
- }
- ]
- },
- "35210": {
- "name": "stretchLastChild",
- "type": "Property",
- "url": "/api/class/DockLayout#stretchlastchild",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value that indicates whether the last child element within a DockLayout stretches to fill the remaining available space.\nThe default value is true."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "stretchLastChild: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/dock-layout/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value that indicates whether the last child element within a DockLayout stretches to fill the remaining available space.\nThe default value is true."
- }
- ]
- },
- "url": "/api/class/DockLayout#stretchlastchild"
- }
- ]
- },
- "35211": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/DockLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/DockLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "35213": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/DockLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/DockLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "35216": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/DockLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/DockLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35219": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/DockLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/DockLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35222": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/DockLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/DockLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35226": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/DockLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/DockLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35229": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/DockLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/DockLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35231": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/DockLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/DockLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35234": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/DockLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/DockLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35237": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/DockLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/DockLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35244": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/DockLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/DockLayout#padding"
- }
- ]
- },
- "35245": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/DockLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/DockLayout#paddingbottom"
- }
- ]
- },
- "35246": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/DockLayout#paddingleft"
- }
- ]
- },
- "35247": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/DockLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/DockLayout#paddingright"
- }
- ]
- },
- "35248": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/DockLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/DockLayout#paddingtop"
- }
- ]
- },
- "35249": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/DockLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/DockLayout#cliptobounds"
- }
- ]
- },
- "35250": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/DockLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#ispassthroughparentenabled"
- }
- ]
- },
- "35262": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/DockLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/DockLayout#iosoverflowsafearea"
- }
- ]
- },
- "35263": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/DockLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/DockLayout#android"
- }
- ]
- },
- "35264": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/DockLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/DockLayout#ios"
- }
- ]
- },
- "35265": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/DockLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/DockLayout#bindingcontext"
- }
- ]
- },
- "35266": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/DockLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#bordercolor"
- }
- ]
- },
- "35267": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/DockLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#bordertopcolor"
- }
- ]
- },
- "35268": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/DockLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderrightcolor"
- }
- ]
- },
- "35269": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/DockLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderbottomcolor"
- }
- ]
- },
- "35270": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/DockLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderleftcolor"
- }
- ]
- },
- "35271": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderwidth"
- }
- ]
- },
- "35272": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#bordertopwidth"
- }
- ]
- },
- "35273": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderrightwidth"
- }
- ]
- },
- "35274": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderbottomwidth"
- }
- ]
- },
- "35275": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderleftwidth"
- }
- ]
- },
- "35276": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/DockLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderradius"
- }
- ]
- },
- "35277": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/DockLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#bordertopleftradius"
- }
- ]
- },
- "35278": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/DockLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#bordertoprightradius"
- }
- ]
- },
- "35279": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/DockLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderbottomrightradius"
- }
- ]
- },
- "35280": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/DockLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#borderbottomleftradius"
- }
- ]
- },
- "35281": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/DockLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#color"
- }
- ]
- },
- "35282": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/DockLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessible"
- }
- ]
- },
- "35283": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityhidden"
- }
- ]
- },
- "35284": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityidentifier"
- }
- ]
- },
- "35285": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityrole"
- }
- ]
- },
- "35286": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilitystate"
- }
- ]
- },
- "35287": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilitylabel"
- }
- ]
- },
- "35288": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityvalue"
- }
- ]
- },
- "35289": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilityhint"
- }
- ]
- },
- "35290": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#accessibilityliveregion"
- }
- ]
- },
- "35291": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilitylanguage"
- }
- ]
- },
- "35292": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/DockLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/DockLayout#accessibilitymediasession"
- }
- ]
- },
- "35293": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/DockLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/DockLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "35294": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/DockLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/DockLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "35295": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/DockLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/DockLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "35296": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/DockLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/DockLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "35297": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/DockLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#automationtext"
- }
- ]
- },
- "35298": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/DockLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/DockLayout#androidelevation"
- }
- ]
- },
- "35299": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/DockLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/DockLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "35300": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/DockLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/DockLayout#background"
- }
- ]
- },
- "35301": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/DockLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#backgroundcolor"
- }
- ]
- },
- "35302": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/DockLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#backgroundimage"
- }
- ]
- },
- "35303": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/DockLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#boxshadow"
- }
- ]
- },
- "35304": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/DockLayout#minwidth"
- }
- ]
- },
- "35305": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/DockLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/DockLayout#minheight"
- }
- ]
- },
- "35306": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/DockLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#width"
- }
- ]
- },
- "35307": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/DockLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#height"
- }
- ]
- },
- "35308": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/DockLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/DockLayout#margin"
- }
- ]
- },
- "35309": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/DockLayout#marginleft"
- }
- ]
- },
- "35310": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/DockLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/DockLayout#margintop"
- }
- ]
- },
- "35311": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/DockLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/DockLayout#marginright"
- }
- ]
- },
- "35312": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/DockLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/DockLayout#marginbottom"
- }
- ]
- },
- "35313": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/DockLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/DockLayout#horizontalalignment"
- }
- ]
- },
- "35314": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/DockLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/DockLayout#verticalalignment"
- }
- ]
- },
- "35315": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/DockLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#visibility"
- }
- ]
- },
- "35316": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/DockLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/DockLayout#opacity"
- }
- ]
- },
- "35317": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/DockLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/DockLayout#rotate"
- }
- ]
- },
- "35318": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/DockLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/DockLayout#rotatex"
- }
- ]
- },
- "35319": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/DockLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/DockLayout#rotatey"
- }
- ]
- },
- "35320": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/DockLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/DockLayout#perspective"
- }
- ]
- },
- "35321": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/DockLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/DockLayout#translatex"
- }
- ]
- },
- "35322": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/DockLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/DockLayout#translatey"
- }
- ]
- },
- "35323": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/DockLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#scalex"
- }
- ]
- },
- "35324": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/DockLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#scaley"
- }
- ]
- },
- "35325": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/DockLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#originx"
- }
- ]
- },
- "35326": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/DockLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#originy"
- }
- ]
- },
- "35327": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/DockLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#isenabled"
- }
- ]
- },
- "35328": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/DockLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/DockLayout#isuserinteractionenabled"
- }
- ]
- },
- "35329": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/DockLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/DockLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "35330": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/DockLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/DockLayout#iosignoresafearea"
- }
- ]
- },
- "35331": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/DockLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/DockLayout#islayoutvalid"
- }
- ]
- },
- "35332": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/DockLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/DockLayout#csstype"
- }
- ]
- },
- "35333": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/DockLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#cssclasses"
- }
- ]
- },
- "35334": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/DockLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#csspseudoclasses"
- }
- ]
- },
- "35335": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/DockLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/DockLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35339": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/DockLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/DockLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35346": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/DockLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/DockLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "35348": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/DockLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/DockLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "35350": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/DockLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/DockLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "35352": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/DockLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/DockLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35356": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/DockLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/DockLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35362": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/DockLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/DockLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35366": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/DockLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/DockLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35372": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/DockLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/DockLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35374": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/DockLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/DockLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "35377": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/DockLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DockLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "35385": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/DockLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DockLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DockLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DockLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/DockLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/DockLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "35428": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/DockLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/DockLayout#modal"
- }
- ]
- },
- "35429": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/DockLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/DockLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "35432": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/DockLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/DockLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "35435": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/DockLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/DockLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "35442": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/DockLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/DockLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "35444": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/DockLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/DockLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "35446": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/DockLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/DockLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "35449": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/DockLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/DockLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "35451": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/DockLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/DockLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35463": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/DockLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/DockLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "35465": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/DockLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/DockLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35467": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/DockLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/DockLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "35469": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/DockLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/DockLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35475": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/DockLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/DockLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35477": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/DockLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/DockLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35479": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/DockLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/DockLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35481": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/DockLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/DockLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35487": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/DockLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/DockLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35490": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/DockLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/DockLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35493": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/DockLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/DockLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35562": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/DockLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/DockLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35568": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/DockLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/DockLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35573": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/DockLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/DockLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35575": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/DockLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/DockLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35577": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/DockLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/DockLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35580": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/DockLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/DockLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "35583": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/DockLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/DockLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "35587": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/DockLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#testid"
- }
- ]
- },
- "35588": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/DockLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#touchanimation"
- }
- ]
- },
- "35589": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/DockLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#ignoretouchanimation"
- }
- ]
- },
- "35590": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/DockLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#touchdelay"
- }
- ]
- },
- "35591": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/DockLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#closemodalcallback"
- }
- ]
- },
- "35592": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/DockLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/DockLayout#transitionid"
- }
- ]
- },
- "35593": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/DockLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#islayoutvalid"
- }
- ]
- },
- "35594": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/DockLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/DockLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35596": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/DockLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/DockLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35599": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/DockLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35607": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/DockLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35615": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/DockLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35623": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/DockLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/DockLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "35626": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/DockLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/DockLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35629": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/DockLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/DockLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35633": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/DockLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/DockLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35639": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/DockLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/DockLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35641": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/DockLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/DockLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35643": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/DockLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/DockLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35645": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/DockLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/DockLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "35649": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/DockLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/DockLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "35653": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/DockLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/DockLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "35657": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/DockLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/DockLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "35661": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/DockLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/DockLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35663": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/DockLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/DockLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35669": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/DockLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/DockLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35671": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/DockLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/DockLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35675": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/DockLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#domnode"
- }
- ]
- },
- "35676": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/DockLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#recyclenativeview"
- }
- ]
- },
- "35677": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/DockLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/DockLayout#viewcontroller"
- }
- ]
- },
- "35678": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/DockLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/DockLayout#nativeviewprotected"
- }
- ]
- },
- "35679": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/DockLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/DockLayout#parent"
- }
- ]
- },
- "35680": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/DockLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/DockLayout#iscollapsed"
- }
- ]
- },
- "35681": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/DockLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/DockLayout#id"
- }
- ]
- },
- "35682": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/DockLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/DockLayout#classname"
- }
- ]
- },
- "35683": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/DockLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/DockLayout#sharedtransitiontag"
- }
- ]
- },
- "35684": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/DockLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/DockLayout#sharedtransitionignore"
- }
- ]
- },
- "35685": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/DockLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#domid"
- }
- ]
- },
- "35686": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/DockLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#context"
- }
- ]
- },
- "35687": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/DockLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "35688": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/DockLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#cssstate"
- }
- ]
- },
- "35689": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/DockLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#stylescope"
- }
- ]
- },
- "35694": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/DockLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/DockLayout#suspendnativeupdatescount"
- }
- ]
- },
- "35695": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/DockLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#isstylescopehost"
- }
- ]
- },
- "35696": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/DockLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "35697": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/DockLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#left"
- }
- ]
- },
- "35698": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/DockLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#top"
- }
- ]
- },
- "35699": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveleft"
- }
- ]
- },
- "35700": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivetop"
- }
- ]
- },
- "35701": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/DockLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#dock"
- }
- ]
- },
- "35702": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/DockLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#row"
- }
- ]
- },
- "35703": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/DockLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#col"
- }
- ]
- },
- "35704": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/DockLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#column"
- }
- ]
- },
- "35705": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/DockLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#rowspan"
- }
- ]
- },
- "35706": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/DockLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#colspan"
- }
- ]
- },
- "35707": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/DockLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#columnspan"
- }
- ]
- },
- "35708": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/DockLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#order"
- }
- ]
- },
- "35709": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/DockLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#flexgrow"
- }
- ]
- },
- "35710": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/DockLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#flexshrink"
- }
- ]
- },
- "35711": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/DockLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#flexwrapbefore"
- }
- ]
- },
- "35712": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/DockLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#alignself"
- }
- ]
- },
- "35713": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#oldleft"
- }
- ]
- },
- "35714": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/DockLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#oldtop"
- }
- ]
- },
- "35715": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/DockLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#oldright"
- }
- ]
- },
- "35716": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/DockLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#oldbottom"
- }
- ]
- },
- "35717": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/DockLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "35718": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveminwidth"
- }
- ]
- },
- "35719": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveminheight"
- }
- ]
- },
- "35720": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivewidth"
- }
- ]
- },
- "35721": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveheight"
- }
- ]
- },
- "35722": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivemargintop"
- }
- ]
- },
- "35723": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivemarginright"
- }
- ]
- },
- "35724": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivemarginbottom"
- }
- ]
- },
- "35725": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivemarginleft"
- }
- ]
- },
- "35726": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivepaddingtop"
- }
- ]
- },
- "35727": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivepaddingright"
- }
- ]
- },
- "35728": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivepaddingbottom"
- }
- ]
- },
- "35729": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivepaddingleft"
- }
- ]
- },
- "35730": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectivebordertopwidth"
- }
- ]
- },
- "35731": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveborderrightwidth"
- }
- ]
- },
- "35732": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "35733": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/DockLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#effectiveborderleftwidth"
- }
- ]
- },
- "35734": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/DockLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#defaultpaddingtop"
- }
- ]
- },
- "35735": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/DockLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#defaultpaddingright"
- }
- ]
- },
- "35736": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/DockLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#defaultpaddingbottom"
- }
- ]
- },
- "35737": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/DockLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#defaultpaddingleft"
- }
- ]
- },
- "35738": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/DockLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/DockLayout#ispaddingrelative"
- }
- ]
- },
- "35740": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/DockLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/DockLayout#reusable"
- }
- ]
- },
- "35741": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/DockLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/DockLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "35745": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/DockLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/DockLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "35749": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/DockLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/DockLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "35751": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/DockLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/DockLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "35755": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/DockLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/DockLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35757": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/DockLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/DockLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "35761": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/DockLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/DockLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "35765": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/DockLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/DockLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "35769": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/DockLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/DockLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "35771": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/DockLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/DockLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35773": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/DockLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/DockLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35777": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/DockLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/DockLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35779": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/DockLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/DockLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35781": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/DockLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/DockLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35784": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/DockLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/DockLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35787": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/DockLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/DockLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "35793": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/DockLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/DockLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35795": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/DockLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/DockLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35797": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/DockLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/DockLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35800": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/DockLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/DockLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35803": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/DockLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/DockLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35807": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/DockLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/DockLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35810": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/DockLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/DockLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35814": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/DockLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/DockLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35818": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/DockLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/DockLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35821": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/DockLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/DockLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "35823": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/DockLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/DockLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35826": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/DockLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/DockLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35829": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/DockLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/DockLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35832": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/DockLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/DockLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "35834": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/DockLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/DockLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35836": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/DockLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/DockLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35838": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/DockLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/DockLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35843": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/DockLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/DockLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35846": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/DockLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/DockLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35849": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/DockLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/DockLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35852": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/DockLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/DockLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35855": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/DockLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/DockLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35859": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/DockLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/DockLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35862": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/DockLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/DockLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35866": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/DockLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/DockLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35869": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/DockLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/DockLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35872": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/DockLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/DockLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35874": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/DockLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/DockLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "35878": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/DockLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/DockLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35881": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/DockLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/DockLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35883": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/DockLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/DockLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "35886": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/DockLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/DockLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "35889": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/DockLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/DockLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35893": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/DockLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/DockLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35901": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/DockLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/DockLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35905": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/DockLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/DockLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35910": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/DockLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/DockLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "35913": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/DockLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/DockLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "35918": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/DockLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/DockLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/DockLayout.md b/content/api/class/DockLayout.md
deleted file mode 100644
index 581de131..00000000
--- a/content/api/class/DockLayout.md
+++ /dev/null
@@ -1,94 +0,0 @@
----
-title: DockLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'DockLayout'
-layout: api
-seo:
- description: "A Layout that arranges its children at its outer edges, and allows its last child to take up the remaining space."
----
-
-
-
-
-
-
-blurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 12,
- "character": 15
- }
- ],
- "url": "/api/class/EditableTextBase#blurevent"
- }
- ]
- },
- "33519": {
- "name": "focusEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#focusevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "focusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 13,
- "character": 15
- }
- ],
- "url": "/api/class/EditableTextBase#focusevent"
- }
- ]
- },
- "33520": {
- "name": "textChangeEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#textchangeevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "textChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 14,
- "character": 15
- }
- ],
- "url": "/api/class/EditableTextBase#textchangeevent"
- }
- ]
- },
- "33521": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#layoutchangedevent"
- }
- ]
- },
- "33522": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#showingmodallyevent"
- }
- ]
- },
- "33523": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#shownmodallyevent"
- }
- ]
- },
- "33524": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityblurevent"
- }
- ]
- },
- "33525": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityfocusevent"
- }
- ]
- },
- "33526": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityfocuschangedevent"
- }
- ]
- },
- "33527": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/EditableTextBase#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/EditableTextBase#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "33536": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/EditableTextBase#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/EditableTextBase#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33544": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/EditableTextBase#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/EditableTextBase#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "33550": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/EditableTextBase#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/EditableTextBase#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "33554": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#accessibilityperformescapeevent"
- }
- ]
- },
- "33555": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#loadedevent"
- }
- ]
- },
- "33556": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#unloadedevent"
- }
- ]
- },
- "33557": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#createdevent"
- }
- ]
- },
- "33558": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#disposenativeviewevent"
- }
- ]
- },
- "33559": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#propertychangeevent"
- }
- ]
- },
- "33560": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/EditableTextBase#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33568": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/EditableTextBase#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33576": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/EditableTextBase#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33584": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/EditableTextBase#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33592": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/EditableTextBase#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33600": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/EditableTextBase#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new EditableTextBase(): EditableTextBase",
- "url": "/api/class/EditableTextBase#constructor-new-editabletextbase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "EditableTextBase"
- }
- ]
- },
- "33602": {
- "name": "keyboardType",
- "type": "Property",
- "url": "/api/class/EditableTextBase#keyboardtype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard type."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "keyboardType: KeyboardInputType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard type."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#keyboardtype"
- }
- ]
- },
- "33603": {
- "name": "returnKeyType",
- "type": "Property",
- "url": "/api/class/EditableTextBase#returnkeytype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard return key flavor."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "returnKeyType: ReturnKeyButtonType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard return key flavor."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#returnkeytype"
- }
- ]
- },
- "33604": {
- "name": "updateTextTrigger",
- "type": "Property",
- "url": "/api/class/EditableTextBase#updatetexttrigger",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating when the text property will be updated."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "updateTextTrigger: UpdateTextTriggerType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating when the text property will be updated."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#updatetexttrigger"
- }
- ]
- },
- "33605": {
- "name": "autocapitalizationType",
- "type": "Property",
- "url": "/api/class/EditableTextBase#autocapitalizationtype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autocapitalization type."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "autocapitalizationType: AutocapitalizationInputType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autocapitalization type."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#autocapitalizationtype"
- }
- ]
- },
- "33606": {
- "name": "autofillType",
- "type": "Property",
- "url": "/api/class/EditableTextBase#autofilltype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autofill type."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "autofillType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autofill type."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#autofilltype"
- }
- ]
- },
- "33607": {
- "name": "editable",
- "type": "Property",
- "url": "/api/class/EditableTextBase#editable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the instance is editable."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "editable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the instance is editable."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#editable"
- }
- ]
- },
- "33608": {
- "name": "autocorrect",
- "type": "Property",
- "url": "/api/class/EditableTextBase#autocorrect",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables autocorrection."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "autocorrect: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables autocorrection."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#autocorrect"
- }
- ]
- },
- "33609": {
- "name": "hint",
- "type": "Property",
- "url": "/api/class/EditableTextBase#hint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the placeholder text."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "hint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the placeholder text."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#hint"
- }
- ]
- },
- "33610": {
- "name": "maxLength",
- "type": "Property",
- "url": "/api/class/EditableTextBase#maxlength",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of characters."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxLength: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of characters."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#maxlength"
- }
- ]
- },
- "33611": {
- "name": "valueFormatter",
- "type": "Property",
- "url": "/api/class/EditableTextBase#valueformatter",
- "flags": {},
- "signatures": [
- {
- "code": "valueFormatter: (value: string) => string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 65,
- "character": 1
- }
- ],
- "url": "/api/class/EditableTextBase#valueformatter"
- }
- ]
- },
- "33615": {
- "name": "dismissSoftInput",
- "type": "Method",
- "url": "/api/class/EditableTextBase#dismisssoftinput",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "dismissSoftInput(): void",
- "url": "/api/class/EditableTextBase#dismisssoftinput-dismisssoftinput-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hides the soft input method, ususally a soft keyboard."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33620": {
- "name": "setSelection",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setselection",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSelection(start: number, stop?: number): any",
- "url": "/api/class/EditableTextBase#setselection-setselection-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 82,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the selection anchor to start and the selection edge to stop"
- }
- ]
- },
- "parameters": [
- {
- "name": "start",
- "type": "number",
- "flags": {}
- },
- {
- "name": "stop",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "33624": {
- "name": "nativeTextViewProtected",
- "type": "Property",
- "url": "/api/class/EditableTextBase#nativetextviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "nativeTextViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 14,
- "character": 17
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#nativetextviewprotected"
- }
- ]
- },
- "33625": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/EditableTextBase#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#text"
- }
- ]
- },
- "33626": {
- "name": "formattedText",
- "type": "Property",
- "url": "/api/class/EditableTextBase#formattedtext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "formattedText: FormattedString",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#formattedtext"
- }
- ]
- },
- "33627": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/EditableTextBase#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#fontsize"
- }
- ]
- },
- "33628": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/EditableTextBase#letterspacing",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#letterspacing"
- }
- ]
- },
- "33629": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#lineheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#lineheight"
- }
- ]
- },
- "33630": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/EditableTextBase#textalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#textalignment"
- }
- ]
- },
- "33631": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/EditableTextBase#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#textdecoration"
- }
- ]
- },
- "33632": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/EditableTextBase#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#texttransform"
- }
- ]
- },
- "33633": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/EditableTextBase#textshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#textshadow"
- }
- ]
- },
- "33634": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/EditableTextBase#whitespace",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#whitespace"
- }
- ]
- },
- "33635": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/EditableTextBase#maxlines",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#maxlines"
- }
- ]
- },
- "33636": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/EditableTextBase#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#padding"
- }
- ]
- },
- "33637": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/EditableTextBase#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#paddingbottom"
- }
- ]
- },
- "33638": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#paddingleft"
- }
- ]
- },
- "33639": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#paddingright"
- }
- ]
- },
- "33640": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#paddingtop"
- }
- ]
- },
- "33651": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/EditableTextBase#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#android"
- }
- ]
- },
- "33652": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/EditableTextBase#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#ios"
- }
- ]
- },
- "33653": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/EditableTextBase#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#bindingcontext"
- }
- ]
- },
- "33654": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/EditableTextBase#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#bordercolor"
- }
- ]
- },
- "33655": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/EditableTextBase#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#bordertopcolor"
- }
- ]
- },
- "33656": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderrightcolor"
- }
- ]
- },
- "33657": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderbottomcolor"
- }
- ]
- },
- "33658": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderleftcolor"
- }
- ]
- },
- "33659": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderwidth"
- }
- ]
- },
- "33660": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#bordertopwidth"
- }
- ]
- },
- "33661": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderrightwidth"
- }
- ]
- },
- "33662": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderbottomwidth"
- }
- ]
- },
- "33663": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderleftwidth"
- }
- ]
- },
- "33664": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderradius"
- }
- ]
- },
- "33665": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/EditableTextBase#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#bordertopleftradius"
- }
- ]
- },
- "33666": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/EditableTextBase#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#bordertoprightradius"
- }
- ]
- },
- "33667": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderbottomrightradius"
- }
- ]
- },
- "33668": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/EditableTextBase#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#borderbottomleftradius"
- }
- ]
- },
- "33669": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/EditableTextBase#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#color"
- }
- ]
- },
- "33670": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessible"
- }
- ]
- },
- "33671": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityhidden"
- }
- ]
- },
- "33672": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityidentifier"
- }
- ]
- },
- "33673": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityrole"
- }
- ]
- },
- "33674": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilitystate"
- }
- ]
- },
- "33675": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilitylabel"
- }
- ]
- },
- "33676": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityvalue"
- }
- ]
- },
- "33677": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilityhint"
- }
- ]
- },
- "33678": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#accessibilityliveregion"
- }
- ]
- },
- "33679": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilitylanguage"
- }
- ]
- },
- "33680": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/EditableTextBase#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#accessibilitymediasession"
- }
- ]
- },
- "33681": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "33682": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iosaccessibilityminfontscale"
- }
- ]
- },
- "33683": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "33684": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/EditableTextBase#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#androidcontentdescriptionupdated"
- }
- ]
- },
- "33685": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/EditableTextBase#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#automationtext"
- }
- ]
- },
- "33686": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/EditableTextBase#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#androidelevation"
- }
- ]
- },
- "33687": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/EditableTextBase#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#androiddynamicelevationoffset"
- }
- ]
- },
- "33688": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/EditableTextBase#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#background"
- }
- ]
- },
- "33689": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/EditableTextBase#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#backgroundcolor"
- }
- ]
- },
- "33690": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/EditableTextBase#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#backgroundimage"
- }
- ]
- },
- "33691": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/EditableTextBase#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#boxshadow"
- }
- ]
- },
- "33692": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#minwidth"
- }
- ]
- },
- "33693": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#minheight"
- }
- ]
- },
- "33694": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/EditableTextBase#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#width"
- }
- ]
- },
- "33695": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/EditableTextBase#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#height"
- }
- ]
- },
- "33696": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/EditableTextBase#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#margin"
- }
- ]
- },
- "33697": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#marginleft"
- }
- ]
- },
- "33698": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#margintop"
- }
- ]
- },
- "33699": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#marginright"
- }
- ]
- },
- "33700": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/EditableTextBase#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#marginbottom"
- }
- ]
- },
- "33701": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/EditableTextBase#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#horizontalalignment"
- }
- ]
- },
- "33702": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/EditableTextBase#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#verticalalignment"
- }
- ]
- },
- "33703": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/EditableTextBase#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#visibility"
- }
- ]
- },
- "33704": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/EditableTextBase#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#opacity"
- }
- ]
- },
- "33705": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/EditableTextBase#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#rotate"
- }
- ]
- },
- "33706": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/EditableTextBase#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#rotatex"
- }
- ]
- },
- "33707": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/EditableTextBase#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#rotatey"
- }
- ]
- },
- "33708": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/EditableTextBase#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#perspective"
- }
- ]
- },
- "33709": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/EditableTextBase#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#translatex"
- }
- ]
- },
- "33710": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/EditableTextBase#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#translatey"
- }
- ]
- },
- "33711": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/EditableTextBase#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#scalex"
- }
- ]
- },
- "33712": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/EditableTextBase#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#scaley"
- }
- ]
- },
- "33713": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/EditableTextBase#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#originx"
- }
- ]
- },
- "33714": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/EditableTextBase#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#originy"
- }
- ]
- },
- "33715": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/EditableTextBase#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#isenabled"
- }
- ]
- },
- "33716": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/EditableTextBase#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#isuserinteractionenabled"
- }
- ]
- },
- "33717": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iosoverflowsafearea"
- }
- ]
- },
- "33718": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iosoverflowsafeareaenabled"
- }
- ]
- },
- "33719": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iosignoresafearea"
- }
- ]
- },
- "33720": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/EditableTextBase#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#islayoutvalid"
- }
- ]
- },
- "33721": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/EditableTextBase#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#csstype"
- }
- ]
- },
- "33722": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/EditableTextBase#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#cssclasses"
- }
- ]
- },
- "33723": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/EditableTextBase#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#csspseudoclasses"
- }
- ]
- },
- "33724": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/EditableTextBase#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/EditableTextBase#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33728": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/EditableTextBase#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/EditableTextBase#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33735": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/EditableTextBase#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "33737": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/EditableTextBase#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "33739": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/EditableTextBase#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "33741": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/EditableTextBase#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33745": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/EditableTextBase#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33751": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/EditableTextBase#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33755": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/EditableTextBase#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33761": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/EditableTextBase#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/EditableTextBase#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33763": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/EditableTextBase#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "33766": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/EditableTextBase#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/EditableTextBase#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "33774": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/EditableTextBase#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/EditableTextBase#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/EditableTextBase#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/EditableTextBase#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/EditableTextBase#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/EditableTextBase#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "33817": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/EditableTextBase#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#modal"
- }
- ]
- },
- "33818": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/EditableTextBase#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/EditableTextBase#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "33821": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/EditableTextBase#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/EditableTextBase#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "33824": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/EditableTextBase#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "33831": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/EditableTextBase#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "33833": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/EditableTextBase#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "33835": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/EditableTextBase#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "33838": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/EditableTextBase#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "33840": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/EditableTextBase#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33852": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/EditableTextBase#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "33854": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/EditableTextBase#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/EditableTextBase#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33856": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/EditableTextBase#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "33858": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/EditableTextBase#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33864": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/EditableTextBase#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33866": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/EditableTextBase#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/EditableTextBase#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33868": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/EditableTextBase#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33870": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/EditableTextBase#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33876": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/EditableTextBase#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/EditableTextBase#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33879": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/EditableTextBase#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/EditableTextBase#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33882": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/EditableTextBase#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/EditableTextBase#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33951": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/EditableTextBase#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/EditableTextBase#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33957": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/EditableTextBase#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/EditableTextBase#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33962": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/EditableTextBase#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33964": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/EditableTextBase#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/EditableTextBase#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33966": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/EditableTextBase#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33969": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/EditableTextBase#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "33972": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/EditableTextBase#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "33976": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/EditableTextBase#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#testid"
- }
- ]
- },
- "33977": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/EditableTextBase#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#touchanimation"
- }
- ]
- },
- "33978": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/EditableTextBase#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#ignoretouchanimation"
- }
- ]
- },
- "33979": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/EditableTextBase#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#touchdelay"
- }
- ]
- },
- "33980": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/EditableTextBase#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#closemodalcallback"
- }
- ]
- },
- "33981": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/EditableTextBase#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#transitionid"
- }
- ]
- },
- "33982": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/EditableTextBase#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#islayoutvalid"
- }
- ]
- },
- "33983": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/EditableTextBase#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33985": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/EditableTextBase#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33988": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/EditableTextBase#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33996": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/EditableTextBase#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34004": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/EditableTextBase#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34012": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/EditableTextBase#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/EditableTextBase#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "34015": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/EditableTextBase#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/EditableTextBase#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34018": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/EditableTextBase#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34022": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/EditableTextBase#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34028": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/EditableTextBase#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/EditableTextBase#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34030": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/EditableTextBase#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/EditableTextBase#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34032": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/EditableTextBase#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/EditableTextBase#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34034": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/EditableTextBase#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34038": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/EditableTextBase#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34042": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/EditableTextBase#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "34046": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/EditableTextBase#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/EditableTextBase#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34048": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/EditableTextBase#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/EditableTextBase#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34054": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/EditableTextBase#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34056": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/EditableTextBase#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/EditableTextBase#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34060": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/EditableTextBase#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#domnode"
- }
- ]
- },
- "34061": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/EditableTextBase#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#recyclenativeview"
- }
- ]
- },
- "34062": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/EditableTextBase#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#viewcontroller"
- }
- ]
- },
- "34063": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/EditableTextBase#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#nativeviewprotected"
- }
- ]
- },
- "34064": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/EditableTextBase#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#parent"
- }
- ]
- },
- "34065": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/EditableTextBase#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#iscollapsed"
- }
- ]
- },
- "34066": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/EditableTextBase#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#id"
- }
- ]
- },
- "34067": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/EditableTextBase#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#classname"
- }
- ]
- },
- "34068": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/EditableTextBase#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#sharedtransitiontag"
- }
- ]
- },
- "34069": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/EditableTextBase#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/EditableTextBase#sharedtransitionignore"
- }
- ]
- },
- "34070": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/EditableTextBase#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#domid"
- }
- ]
- },
- "34071": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/EditableTextBase#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#context"
- }
- ]
- },
- "34072": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/EditableTextBase#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#isaddedtonativevisualtree"
- }
- ]
- },
- "34073": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/EditableTextBase#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#cssstate"
- }
- ]
- },
- "34074": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/EditableTextBase#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#stylescope"
- }
- ]
- },
- "34079": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/EditableTextBase#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#suspendnativeupdatescount"
- }
- ]
- },
- "34080": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/EditableTextBase#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#isstylescopehost"
- }
- ]
- },
- "34081": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/EditableTextBase#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "34082": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/EditableTextBase#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#left"
- }
- ]
- },
- "34083": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/EditableTextBase#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#top"
- }
- ]
- },
- "34084": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveleft"
- }
- ]
- },
- "34085": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivetop"
- }
- ]
- },
- "34086": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/EditableTextBase#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#dock"
- }
- ]
- },
- "34087": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/EditableTextBase#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#row"
- }
- ]
- },
- "34088": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/EditableTextBase#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#col"
- }
- ]
- },
- "34089": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/EditableTextBase#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#column"
- }
- ]
- },
- "34090": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/EditableTextBase#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#rowspan"
- }
- ]
- },
- "34091": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/EditableTextBase#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#colspan"
- }
- ]
- },
- "34092": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/EditableTextBase#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#columnspan"
- }
- ]
- },
- "34093": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/EditableTextBase#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#order"
- }
- ]
- },
- "34094": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/EditableTextBase#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#flexgrow"
- }
- ]
- },
- "34095": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/EditableTextBase#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#flexshrink"
- }
- ]
- },
- "34096": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/EditableTextBase#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#flexwrapbefore"
- }
- ]
- },
- "34097": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/EditableTextBase#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#alignself"
- }
- ]
- },
- "34098": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#oldleft"
- }
- ]
- },
- "34099": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#oldtop"
- }
- ]
- },
- "34100": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#oldright"
- }
- ]
- },
- "34101": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/EditableTextBase#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#oldbottom"
- }
- ]
- },
- "34102": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/EditableTextBase#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#ignoreflexminwidthheightreset"
- }
- ]
- },
- "34103": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveminwidth"
- }
- ]
- },
- "34104": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveminheight"
- }
- ]
- },
- "34105": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivewidth"
- }
- ]
- },
- "34106": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveheight"
- }
- ]
- },
- "34107": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivemargintop"
- }
- ]
- },
- "34108": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivemarginright"
- }
- ]
- },
- "34109": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivemarginbottom"
- }
- ]
- },
- "34110": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivemarginleft"
- }
- ]
- },
- "34111": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivepaddingtop"
- }
- ]
- },
- "34112": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivepaddingright"
- }
- ]
- },
- "34113": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivepaddingbottom"
- }
- ]
- },
- "34114": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivepaddingleft"
- }
- ]
- },
- "34115": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectivebordertopwidth"
- }
- ]
- },
- "34116": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveborderrightwidth"
- }
- ]
- },
- "34117": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveborderbottomwidth"
- }
- ]
- },
- "34118": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/EditableTextBase#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#effectiveborderleftwidth"
- }
- ]
- },
- "34119": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/EditableTextBase#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#defaultpaddingtop"
- }
- ]
- },
- "34120": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/EditableTextBase#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#defaultpaddingright"
- }
- ]
- },
- "34121": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/EditableTextBase#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#defaultpaddingbottom"
- }
- ]
- },
- "34122": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/EditableTextBase#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#defaultpaddingleft"
- }
- ]
- },
- "34123": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/EditableTextBase#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/EditableTextBase#ispaddingrelative"
- }
- ]
- },
- "34125": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/EditableTextBase#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/EditableTextBase#reusable"
- }
- ]
- },
- "34126": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/EditableTextBase#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "34130": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/EditableTextBase#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "34134": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/EditableTextBase#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34136": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/EditableTextBase#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "34140": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/EditableTextBase#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34142": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/EditableTextBase#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34146": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/EditableTextBase#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "34150": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/EditableTextBase#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/EditableTextBase#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "34154": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/EditableTextBase#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/EditableTextBase#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "34156": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/EditableTextBase#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/EditableTextBase#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34158": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/EditableTextBase#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/EditableTextBase#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34162": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/EditableTextBase#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34164": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/EditableTextBase#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/EditableTextBase#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34166": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/EditableTextBase#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/EditableTextBase#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34169": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/EditableTextBase#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/EditableTextBase#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34172": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/EditableTextBase#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/EditableTextBase#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "34178": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/EditableTextBase#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/EditableTextBase#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34180": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/EditableTextBase#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/EditableTextBase#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34182": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/EditableTextBase#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/EditableTextBase#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34185": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/EditableTextBase#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/EditableTextBase#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34188": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/EditableTextBase#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/EditableTextBase#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34192": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/EditableTextBase#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/EditableTextBase#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34195": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/EditableTextBase#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34199": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/EditableTextBase#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/EditableTextBase#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34203": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/EditableTextBase#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34206": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/EditableTextBase#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/EditableTextBase#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "34208": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/EditableTextBase#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34211": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/EditableTextBase#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34214": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/EditableTextBase#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/EditableTextBase#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34217": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/EditableTextBase#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "34219": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/EditableTextBase#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34221": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/EditableTextBase#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34223": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/EditableTextBase#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34228": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/EditableTextBase#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34231": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/EditableTextBase#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/EditableTextBase#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34234": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/EditableTextBase#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/EditableTextBase#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34237": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/EditableTextBase#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/EditableTextBase#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "34240": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/EditableTextBase#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/EditableTextBase#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "34244": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/EditableTextBase#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/EditableTextBase#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34247": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/EditableTextBase#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/EditableTextBase#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "34251": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/EditableTextBase#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34254": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/EditableTextBase#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/EditableTextBase#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34257": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/EditableTextBase#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34259": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/EditableTextBase#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/EditableTextBase#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "34263": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/EditableTextBase#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/EditableTextBase#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34266": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/EditableTextBase#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/EditableTextBase#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34268": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/EditableTextBase#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/EditableTextBase#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "34271": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/EditableTextBase#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/EditableTextBase#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "34274": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/EditableTextBase#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/EditableTextBase#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34278": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/EditableTextBase#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/EditableTextBase#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34286": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/EditableTextBase#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/EditableTextBase#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34290": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/EditableTextBase#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/EditableTextBase#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "34295": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/EditableTextBase#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/EditableTextBase#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "34298": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/EditableTextBase#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/EditableTextBase#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "34303": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/EditableTextBase#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/EditableTextBase#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/EditableTextBase.md b/content/api/class/EditableTextBase.md
deleted file mode 100644
index ef3d4420..00000000
--- a/content/api/class/EditableTextBase.md
+++ /dev/null
@@ -1,262 +0,0 @@
----
-title: EditableTextBase
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'EditableTextBase'
-layout: api
-seo:
- description: "Represents the base class for all editable text views."
----
-
-
-
-
-
-
-AndroidTransitionType?: {\n enter?: string\n exit?: string\n popEnter?: string\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "name": "AndroidTransitionType",
- "url": "/api/class/Transition#androidtransitiontype",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#androidtransitiontype"
- }
- ]
- },
- "32530": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/FadeTransition#constructor",
- "flags": {},
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Transition#constructor",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new FadeTransition(duration?: number, nativeCurve?: any): FadeTransition",
- "url": "/api/class/FadeTransition#constructor-new-fadetransition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Transition#constructor",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "duration",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "nativeCurve",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "FadeTransition"
- }
- ]
- },
- "32534": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/FadeTransition#id",
- "flags": {},
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "id: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#id"
- }
- ]
- },
- "32535": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/FadeTransition#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "name?: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "url": "/api/class/FadeTransition#name"
- }
- ]
- },
- "32536": {
- "name": "transitionController",
- "type": "Property",
- "url": "/api/class/FadeTransition#transitioncontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "transitionController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#transitioncontroller"
- }
- ]
- },
- "32537": {
- "name": "interactiveController",
- "type": "Property",
- "url": "/api/class/FadeTransition#interactivecontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "interactiveController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#interactivecontroller"
- }
- ]
- },
- "32538": {
- "name": "presented",
- "type": "Property",
- "url": "/api/class/FadeTransition#presented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presented?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#presented"
- }
- ]
- },
- "32539": {
- "name": "presenting",
- "type": "Property",
- "url": "/api/class/FadeTransition#presenting",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presenting?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#presenting"
- }
- ]
- },
- "32540": {
- "name": "sharedElements",
- "type": "Property",
- "url": "/api/class/FadeTransition#sharedelements",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "sharedElements?: {\n independent?: (SharedElementSettings & {})[]\n presented?: SharedElementSettings[]\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 32,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/FadeTransition#sharedelements"
- }
- ]
- },
- "32547": {
- "name": "getDuration",
- "type": "Method",
- "url": "/api/class/FadeTransition#getduration",
- "flags": {},
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getDuration(): number",
- "url": "/api/class/FadeTransition#getduration-getduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32549": {
- "name": "setDuration",
- "type": "Method",
- "url": "/api/class/FadeTransition#setduration",
- "flags": {},
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setDuration(value: number): void",
- "url": "/api/class/FadeTransition#setduration-setduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32552": {
- "name": "getCurve",
- "type": "Method",
- "url": "/api/class/FadeTransition#getcurve",
- "flags": {},
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCurve(): any",
- "url": "/api/class/FadeTransition#getcurve-getcurve-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 42,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32554": {
- "name": "animateIOSTransition",
- "type": "Method",
- "url": "/api/class/FadeTransition#animateiostransition",
- "flags": {},
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animateIOSTransition(\n transitionContext: any,\n fromViewCtrl: any,\n toViewCtrl: any,\n operation: any\n): void",
- "url": "/api/class/FadeTransition#animateiostransition-animateiostransition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionContext",
- "type": "any",
- "flags": {}
- },
- {
- "name": "fromViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32560": {
- "name": "createAndroidAnimator",
- "type": "Method",
- "url": "/api/class/FadeTransition#createandroidanimator",
- "flags": {},
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAndroidAnimator(transitionType: string): any",
- "url": "/api/class/FadeTransition#createandroidanimator-createandroidanimator-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionType",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32563": {
- "name": "setupInteractiveGesture",
- "type": "Method",
- "url": "/api/class/FadeTransition#setupinteractivegesture",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setupInteractiveGesture(startCallback: () => void, view: View): void",
- "url": "/api/class/FadeTransition#setupinteractivegesture-setupinteractivegesture-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "startCallback",
- "type": "() => void",
- "flags": {}
- },
- {
- "name": "view",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32569": {
- "name": "iosDismissedController",
- "type": "Method",
- "url": "/api/class/FadeTransition#iosdismissedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosDismissedController(dismissed: any): any",
- "url": "/api/class/FadeTransition#iosdismissedcontroller-iosdismissedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "dismissed",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32572": {
- "name": "iosPresentedController",
- "type": "Method",
- "url": "/api/class/FadeTransition#iospresentedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosPresentedController(presented: any, presenting: any, source: any): any",
- "url": "/api/class/FadeTransition#iospresentedcontroller-iospresentedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "presented",
- "type": "any",
- "flags": {}
- },
- {
- "name": "presenting",
- "type": "any",
- "flags": {}
- },
- {
- "name": "source",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32577": {
- "name": "iosInteractionDismiss",
- "type": "Method",
- "url": "/api/class/FadeTransition#iosinteractiondismiss",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionDismiss(animator: any): any",
- "url": "/api/class/FadeTransition#iosinteractiondismiss-iosinteractiondismiss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32580": {
- "name": "iosInteractionPresented",
- "type": "Method",
- "url": "/api/class/FadeTransition#iosinteractionpresented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionPresented(animator: any): any",
- "url": "/api/class/FadeTransition#iosinteractionpresented-iosinteractionpresented-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32583": {
- "name": "iosNavigatedController",
- "type": "Method",
- "url": "/api/class/FadeTransition#iosnavigatedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosNavigatedController(\n navigationController: any,\n operation: number,\n fromVC: any,\n toVC: any\n): any",
- "url": "/api/class/FadeTransition#iosnavigatedcontroller-iosnavigatedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "navigationController",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "number",
- "flags": {}
- },
- {
- "name": "fromVC",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toVC",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32589": {
- "name": "androidFragmentTransactionCallback",
- "type": "Method",
- "url": "/api/class/FadeTransition#androidfragmenttransactioncallback",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "androidFragmentTransactionCallback(fragmentTransaction: any, currentEntry: BackstackEntry, newEntry: BackstackEntry): void",
- "url": "/api/class/FadeTransition#androidfragmenttransactioncallback-androidfragmenttransactioncallback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "fragmentTransaction",
- "type": "any",
- "flags": {}
- },
- {
- "name": "currentEntry",
- "type": "BackstackEntry",
- "flags": {}
- },
- {
- "name": "newEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/FadeTransition.md b/content/api/class/FadeTransition.md
deleted file mode 100644
index 70058b45..00000000
--- a/content/api/class/FadeTransition.md
+++ /dev/null
@@ -1,46 +0,0 @@
----
-title: FadeTransition
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'FadeTransition'
-layout: api
-seo:
- description: FadeTransition
----
-
-
-
-
-
-
-android: Android",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 90,
- "character": 17
- }
- ],
- "url": "/api/class/File#android"
- }
- ]
- },
- "1737": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/File#ios",
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "ios: iOS",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 92,
- "character": 17
- }
- ],
- "url": "/api/class/File#ios"
- }
- ]
- },
- "1738": {
- "name": "exists",
- "type": "Method",
- "url": "/api/class/File#exists",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "exists(path: string): boolean",
- "url": "/api/class/File#exists-exists-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 98,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a File with the specified path already exists."
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1741": {
- "name": "fromPath",
- "type": "Method",
- "url": "/api/class/File#frompath",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromPath(path: string, copy?: boolean): File",
- "url": "/api/class/File#frompath-frompath-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 163,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or creates a File entity at the specified path."
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path to get/create the file at."
- }
- ]
- }
- },
- {
- "name": "copy",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value when set, copies the content-uri to a temp file enabling the legacy behaviour"
- }
- ]
- }
- }
- ],
- "returns": "File"
- }
- ]
- },
- "1745": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/File#constructor",
- "flags": {},
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/FileSystemEntity#constructor",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new File(): File",
- "url": "/api/class/File#constructor-new-file",
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/FileSystemEntity#constructor",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "parameters": [],
- "returns": "File"
- }
- ]
- },
- "1747": {
- "name": "extension",
- "type": "Property",
- "url": "/api/class/File#extension",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the extension of the file."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "extension: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the extension of the file."
- }
- ]
- },
- "url": "/api/class/File#extension"
- }
- ]
- },
- "1748": {
- "name": "size",
- "type": "Property",
- "url": "/api/class/File#size",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the size in bytes of the file."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "size: number",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 108,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the size in bytes of the file."
- }
- ]
- },
- "url": "/api/class/File#size"
- }
- ]
- },
- "1749": {
- "name": "isLocked",
- "type": "Property",
- "url": "/api/class/File#islocked",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating whether the file is currently locked, meaning a background operation associated with this file is running."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isLocked: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 113,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating whether the file is currently locked, meaning a background operation associated with this file is running."
- }
- ]
- },
- "url": "/api/class/File#islocked"
- }
- ]
- },
- "1750": {
- "name": "appendText",
- "type": "Method",
- "url": "/api/class/File#appendtext",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "appendText(content: string, encoding?: string): Promise<any>",
- "url": "/api/class/File#appendtext-appendtext-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 120,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Appends the provided string to the file, using the specified encoding (defaults to UTF-8)."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The content to be saved to the file."
- }
- ]
- }
- },
- {
- "name": "encoding",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value specifying the preferred encoding (defaults to UTF-8)."
- }
- ]
- }
- }
- ],
- "returns": "Promise<any>"
- }
- ]
- },
- "1754": {
- "name": "appendTextSync",
- "type": "Method",
- "url": "/api/class/File#appendtextsync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "appendTextSync(\n content: string,\n onError?: (error: any) => any,\n encoding?: string\n): void",
- "url": "/api/class/File#appendtextsync-appendtextsync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 128,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Appends the provided string to the file synchronously, using the specified encoding (defaults to UTF-8)."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The content to be saved to the file."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some IO-error occurs."
- }
- ]
- }
- },
- {
- "name": "encoding",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value specifying the preferred encoding (defaults to UTF-8)."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1762": {
- "name": "append",
- "type": "Method",
- "url": "/api/class/File#append",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "append(content: any): Promise<void>",
- "url": "/api/class/File#append-append-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 134,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Appends the provided binary content to the file."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The binary content to be saved to the file."
- }
- ]
- }
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "1765": {
- "name": "appendSync",
- "type": "Method",
- "url": "/api/class/File#appendsync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "appendSync(content: any, onError?: (error: any) => any): void",
- "url": "/api/class/File#appendsync-appendsync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 141,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Appends the provided binary content to the file synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The binary content to be saved to the file."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some IO-error occurs."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1772": {
- "name": "copy",
- "type": "Method",
- "url": "/api/class/File#copy",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "copy(dest: string): Promise<boolean>",
- "url": "/api/class/File#copy-copy-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 148,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Copies a file to a given path."
- }
- ]
- },
- "parameters": [
- {
- "name": "dest",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path to the destination file.\nReturns a Promise with a boolean."
- }
- ]
- }
- }
- ],
- "returns": "Promise<boolean>"
- }
- ]
- },
- "1775": {
- "name": "copySync",
- "type": "Method",
- "url": "/api/class/File#copysync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "copySync(dest: string, onError?: (error: any) => any): any",
- "url": "/api/class/File#copysync-copysync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 156,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Copies a file to a given path."
- }
- ]
- },
- "parameters": [
- {
- "name": "dest",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path to the destination file."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(optional) A callback function to use if any error occurs.\nReturns a Promise with a boolean."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1782": {
- "name": "readText",
- "type": "Method",
- "url": "/api/class/File#readtext",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "readText(encoding?: string): Promise<string>",
- "url": "/api/class/File#readtext-readtext-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Reads the content of the file as a string using the specified encoding (defaults to UTF-8)."
- }
- ]
- },
- "parameters": [
- {
- "name": "encoding",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value specifying the preferred encoding (defaults to UTF-8)."
- }
- ]
- }
- }
- ],
- "returns": "Promise<string>"
- }
- ]
- },
- "1785": {
- "name": "readTextSync",
- "type": "Method",
- "url": "/api/class/File#readtextsync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "readTextSync(onError?: (error: any) => any, encoding?: string): string",
- "url": "/api/class/File#readtextsync-readtextsync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 176,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Reads the content of the file as a string synchronously, using the specified encoding (defaults to UTF-8)."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some IO-error occurs."
- }
- ]
- }
- },
- {
- "name": "encoding",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value specifying the preferred encoding (defaults to UTF-8)."
- }
- ]
- }
- }
- ],
- "returns": "string"
- }
- ]
- },
- "1792": {
- "name": "read",
- "type": "Method",
- "url": "/api/class/File#read",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "read(): Promise<any>",
- "url": "/api/class/File#read-read-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 181,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Reads the binary content of the file asynchronously."
- }
- ]
- },
- "parameters": [],
- "returns": "Promise<any>"
- }
- ]
- },
- "1794": {
- "name": "readSync",
- "type": "Method",
- "url": "/api/class/File#readsync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "readSync(onError?: (error: any) => any): any",
- "url": "/api/class/File#readsync-readsync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 187,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Reads the binary content of the file synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some IO-error occurs."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1800": {
- "name": "writeText",
- "type": "Method",
- "url": "/api/class/File#writetext",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "writeText(content: string, encoding?: string): Promise<any>",
- "url": "/api/class/File#writetext-writetext-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Writes the provided string to the file, using the specified encoding (defaults to UTF-8)."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The content to be saved to the file."
- }
- ]
- }
- },
- {
- "name": "encoding",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value specifying the preferred encoding (defaults to UTF-8)."
- }
- ]
- }
- }
- ],
- "returns": "Promise<any>"
- }
- ]
- },
- "1804": {
- "name": "writeTextSync",
- "type": "Method",
- "url": "/api/class/File#writetextsync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "writeTextSync(\n content: string,\n onError?: (error: any) => any,\n encoding?: string\n): void",
- "url": "/api/class/File#writetextsync-writetextsync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 202,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Writes the provided string to the file synchronously, using the specified encoding (defaults to UTF-8)."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The content to be saved to the file."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some IO-error occurs."
- }
- ]
- }
- },
- {
- "name": "encoding",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional value specifying the preferred encoding (defaults to UTF-8)."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1812": {
- "name": "write",
- "type": "Method",
- "url": "/api/class/File#write",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "write(content: any): Promise<void>",
- "url": "/api/class/File#write-write-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 208,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Writes the provided binary content to the file."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The binary content to be saved to the file."
- }
- ]
- }
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "1815": {
- "name": "writeSync",
- "type": "Method",
- "url": "/api/class/File#writesync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "writeSync(content: any, onError?: (error: any) => any): void",
- "url": "/api/class/File#writesync-writesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 215,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Writes the provided binary content to the file synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "content",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The binary content to be saved to the file."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some IO-error occurs."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1822": {
- "name": "lastModified",
- "type": "Property",
- "url": "/api/class/File#lastmodified",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Date object specifying the last time this entity was modified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "lastModified",
- "url": "/api/class/FileSystemEntity#lastmodified",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "lastModified: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "lastModified",
- "url": "/api/class/FileSystemEntity#lastmodified",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Date object specifying the last time this entity was modified."
- }
- ]
- },
- "url": "/api/class/File#lastmodified"
- }
- ]
- },
- "1823": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/File#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the entity."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/FileSystemEntity#name",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 36,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/FileSystemEntity#name",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the entity."
- }
- ]
- },
- "url": "/api/class/File#name"
- }
- ]
- },
- "1824": {
- "name": "path",
- "type": "Property",
- "url": "/api/class/File#path",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the fully-qualified path (including the extension for a File) of the entity."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "path",
- "url": "/api/class/FileSystemEntity#path",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "path: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "path",
- "url": "/api/class/FileSystemEntity#path",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the fully-qualified path (including the extension for a File) of the entity."
- }
- ]
- },
- "url": "/api/class/File#path"
- }
- ]
- },
- "1825": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/File#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Folder object representing the parent of this entity.\nWill be null for a root folder like Documents or Temporary.\nThis property is readonly."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "parent",
- "url": "/api/class/FileSystemEntity#parent",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "parent: Folder",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "parent",
- "url": "/api/class/FileSystemEntity#parent",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Folder object representing the parent of this entity.\nWill be null for a root folder like Documents or Temporary.\nThis property is readonly."
- }
- ]
- },
- "url": "/api/class/File#parent"
- }
- ]
- },
- "1826": {
- "name": "remove",
- "type": "Method",
- "url": "/api/class/File#remove",
- "flags": {},
- "inheritedFrom": {
- "name": "remove",
- "url": "/api/class/FileSystemEntity#remove",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "remove(): Promise<any>",
- "url": "/api/class/File#remove-remove-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "remove",
- "url": "/api/class/FileSystemEntity#remove",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes (deletes) the current Entity from the file system."
- }
- ]
- },
- "parameters": [],
- "returns": "Promise<any>"
- }
- ]
- },
- "1828": {
- "name": "removeSync",
- "type": "Method",
- "url": "/api/class/File#removesync",
- "flags": {},
- "inheritedFrom": {
- "name": "removeSync",
- "url": "/api/class/FileSystemEntity#removesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeSync(onError?: (error: any) => any): void",
- "url": "/api/class/File#removesync-removesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "removeSync",
- "url": "/api/class/FileSystemEntity#removesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes (deletes) the current Entity from the file system synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1834": {
- "name": "rename",
- "type": "Method",
- "url": "/api/class/File#rename",
- "flags": {},
- "inheritedFrom": {
- "name": "rename",
- "url": "/api/class/FileSystemEntity#rename",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "rename(newName: string): Promise<any>",
- "url": "/api/class/File#rename-rename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "rename",
- "url": "/api/class/FileSystemEntity#rename",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Renames the current entity using the specified name."
- }
- ]
- },
- "parameters": [
- {
- "name": "newName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The new name to be applied to the entity."
- }
- ]
- }
- }
- ],
- "returns": "Promise<any>"
- }
- ]
- },
- "1837": {
- "name": "renameSync",
- "type": "Method",
- "url": "/api/class/File#renamesync",
- "flags": {},
- "inheritedFrom": {
- "name": "renameSync",
- "url": "/api/class/FileSystemEntity#renamesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "renameSync(newName: string, onError?: (error: any) => any): void",
- "url": "/api/class/File#renamesync-renamesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "renameSync",
- "url": "/api/class/FileSystemEntity#renamesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Renames the current entity synchronously, using the specified name."
- }
- ]
- },
- "parameters": [
- {
- "name": "newName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The new name to be applied to the entity."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/File.md b/content/api/class/File.md
deleted file mode 100644
index b21676ad..00000000
--- a/content/api/class/File.md
+++ /dev/null
@@ -1,346 +0,0 @@
----
-title: File
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'File'
-layout: api
-seo:
- description: "Represents a File entity on the file system."
----
-
-
-
-
-
-
-lastModified: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Date object specifying the last time this entity was modified."
- }
- ]
- },
- "url": "/api/class/FileSystemEntity#lastmodified"
- }
- ]
- },
- "1848": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/FileSystemEntity#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the entity."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 36,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the entity."
- }
- ]
- },
- "url": "/api/class/FileSystemEntity#name"
- }
- ]
- },
- "1849": {
- "name": "path",
- "type": "Property",
- "url": "/api/class/FileSystemEntity#path",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the fully-qualified path (including the extension for a File) of the entity."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "path: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the fully-qualified path (including the extension for a File) of the entity."
- }
- ]
- },
- "url": "/api/class/FileSystemEntity#path"
- }
- ]
- },
- "1850": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/FileSystemEntity#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Folder object representing the parent of this entity.\nWill be null for a root folder like Documents or Temporary.\nThis property is readonly."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "parent: Folder",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Folder object representing the parent of this entity.\nWill be null for a root folder like Documents or Temporary.\nThis property is readonly."
- }
- ]
- },
- "url": "/api/class/FileSystemEntity#parent"
- }
- ]
- },
- "1851": {
- "name": "remove",
- "type": "Method",
- "url": "/api/class/FileSystemEntity#remove",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "remove(): Promise<any>",
- "url": "/api/class/FileSystemEntity#remove-remove-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes (deletes) the current Entity from the file system."
- }
- ]
- },
- "parameters": [],
- "returns": "Promise<any>"
- }
- ]
- },
- "1853": {
- "name": "removeSync",
- "type": "Method",
- "url": "/api/class/FileSystemEntity#removesync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeSync(onError?: (error: any) => any): void",
- "url": "/api/class/FileSystemEntity#removesync-removesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes (deletes) the current Entity from the file system synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1859": {
- "name": "rename",
- "type": "Method",
- "url": "/api/class/FileSystemEntity#rename",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "rename(newName: string): Promise<any>",
- "url": "/api/class/FileSystemEntity#rename-rename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Renames the current entity using the specified name."
- }
- ]
- },
- "parameters": [
- {
- "name": "newName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The new name to be applied to the entity."
- }
- ]
- }
- }
- ],
- "returns": "Promise<any>"
- }
- ]
- },
- "1862": {
- "name": "renameSync",
- "type": "Method",
- "url": "/api/class/FileSystemEntity#renamesync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "renameSync(newName: string, onError?: (error: any) => any): void",
- "url": "/api/class/FileSystemEntity#renamesync-renamesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Renames the current entity synchronously, using the specified name."
- }
- ]
- },
- "parameters": [
- {
- "name": "newName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The new name to be applied to the entity."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/FileSystemEntity.md b/content/api/class/FileSystemEntity.md
deleted file mode 100644
index 9565860b..00000000
--- a/content/api/class/FileSystemEntity.md
+++ /dev/null
@@ -1,164 +0,0 @@
----
-title: FileSystemEntity
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'FileSystemEntity'
-layout: api
-seo:
- description: "Represents a single entity on the file system."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#layoutchangedevent"
- }
- ]
- },
- "35958": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#showingmodallyevent"
- }
- ]
- },
- "35959": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#shownmodallyevent"
- }
- ]
- },
- "35960": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityblurevent"
- }
- ]
- },
- "35961": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityfocusevent"
- }
- ]
- },
- "35962": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "35963": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/FlexboxLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "35972": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/FlexboxLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "35980": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/FlexboxLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35986": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/FlexboxLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "35990": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "35991": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#loadedevent"
- }
- ]
- },
- "35992": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#unloadedevent"
- }
- ]
- },
- "35993": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#createdevent"
- }
- ]
- },
- "35994": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#disposenativeviewevent"
- }
- ]
- },
- "35995": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#propertychangeevent"
- }
- ]
- },
- "35996": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36004": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36012": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36020": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36028": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36036": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/FlexboxLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new FlexboxLayout(): FlexboxLayout",
- "url": "/api/class/FlexboxLayout#constructor-new-flexboxlayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "FlexboxLayout"
- }
- ]
- },
- "36038": {
- "name": "flexDirection",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#flexdirection",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "flexDirection: FlexDirection",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/flexbox-layout/index.d.ts",
- "line": 35,
- "character": 8
- }
- ],
- "url": "/api/class/FlexboxLayout#flexdirection"
- }
- ]
- },
- "36039": {
- "name": "flexWrap",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#flexwrap",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "flexWrap: FlexWrap",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/flexbox-layout/index.d.ts",
- "line": 36,
- "character": 8
- }
- ],
- "url": "/api/class/FlexboxLayout#flexwrap"
- }
- ]
- },
- "36040": {
- "name": "justifyContent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#justifycontent",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "justifyContent: JustifyContent",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/flexbox-layout/index.d.ts",
- "line": 37,
- "character": 8
- }
- ],
- "url": "/api/class/FlexboxLayout#justifycontent"
- }
- ]
- },
- "36041": {
- "name": "alignItems",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#alignitems",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "alignItems: AlignItems",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/flexbox-layout/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "url": "/api/class/FlexboxLayout#alignitems"
- }
- ]
- },
- "36042": {
- "name": "alignContent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#aligncontent",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "alignContent: AlignContent",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/flexbox-layout/index.d.ts",
- "line": 39,
- "character": 8
- }
- ],
- "url": "/api/class/FlexboxLayout#aligncontent"
- }
- ]
- },
- "36043": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/FlexboxLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "36045": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/FlexboxLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "36048": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/FlexboxLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "36051": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/FlexboxLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36054": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/FlexboxLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36058": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/FlexboxLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36061": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/FlexboxLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36063": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/FlexboxLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36066": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/FlexboxLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36069": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/FlexboxLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36076": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#padding"
- }
- ]
- },
- "36077": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#paddingbottom"
- }
- ]
- },
- "36078": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#paddingleft"
- }
- ]
- },
- "36079": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#paddingright"
- }
- ]
- },
- "36080": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#paddingtop"
- }
- ]
- },
- "36081": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#cliptobounds"
- }
- ]
- },
- "36082": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#ispassthroughparentenabled"
- }
- ]
- },
- "36094": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iosoverflowsafearea"
- }
- ]
- },
- "36095": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#android"
- }
- ]
- },
- "36096": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#ios"
- }
- ]
- },
- "36097": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#bindingcontext"
- }
- ]
- },
- "36098": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#bordercolor"
- }
- ]
- },
- "36099": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#bordertopcolor"
- }
- ]
- },
- "36100": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderrightcolor"
- }
- ]
- },
- "36101": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderbottomcolor"
- }
- ]
- },
- "36102": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderleftcolor"
- }
- ]
- },
- "36103": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderwidth"
- }
- ]
- },
- "36104": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#bordertopwidth"
- }
- ]
- },
- "36105": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderrightwidth"
- }
- ]
- },
- "36106": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderbottomwidth"
- }
- ]
- },
- "36107": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderleftwidth"
- }
- ]
- },
- "36108": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderradius"
- }
- ]
- },
- "36109": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#bordertopleftradius"
- }
- ]
- },
- "36110": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#bordertoprightradius"
- }
- ]
- },
- "36111": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderbottomrightradius"
- }
- ]
- },
- "36112": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#borderbottomleftradius"
- }
- ]
- },
- "36113": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#color"
- }
- ]
- },
- "36114": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessible"
- }
- ]
- },
- "36115": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityhidden"
- }
- ]
- },
- "36116": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityidentifier"
- }
- ]
- },
- "36117": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityrole"
- }
- ]
- },
- "36118": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilitystate"
- }
- ]
- },
- "36119": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilitylabel"
- }
- ]
- },
- "36120": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityvalue"
- }
- ]
- },
- "36121": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilityhint"
- }
- ]
- },
- "36122": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#accessibilityliveregion"
- }
- ]
- },
- "36123": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilitylanguage"
- }
- ]
- },
- "36124": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#accessibilitymediasession"
- }
- ]
- },
- "36125": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "36126": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "36127": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "36128": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "36129": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#automationtext"
- }
- ]
- },
- "36130": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#androidelevation"
- }
- ]
- },
- "36131": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "36132": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#background"
- }
- ]
- },
- "36133": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#backgroundcolor"
- }
- ]
- },
- "36134": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#backgroundimage"
- }
- ]
- },
- "36135": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#boxshadow"
- }
- ]
- },
- "36136": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#minwidth"
- }
- ]
- },
- "36137": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#minheight"
- }
- ]
- },
- "36138": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#width"
- }
- ]
- },
- "36139": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#height"
- }
- ]
- },
- "36140": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#margin"
- }
- ]
- },
- "36141": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#marginleft"
- }
- ]
- },
- "36142": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#margintop"
- }
- ]
- },
- "36143": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#marginright"
- }
- ]
- },
- "36144": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#marginbottom"
- }
- ]
- },
- "36145": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#horizontalalignment"
- }
- ]
- },
- "36146": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#verticalalignment"
- }
- ]
- },
- "36147": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#visibility"
- }
- ]
- },
- "36148": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#opacity"
- }
- ]
- },
- "36149": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#rotate"
- }
- ]
- },
- "36150": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#rotatex"
- }
- ]
- },
- "36151": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#rotatey"
- }
- ]
- },
- "36152": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#perspective"
- }
- ]
- },
- "36153": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#translatex"
- }
- ]
- },
- "36154": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#translatey"
- }
- ]
- },
- "36155": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#scalex"
- }
- ]
- },
- "36156": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#scaley"
- }
- ]
- },
- "36157": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#originx"
- }
- ]
- },
- "36158": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#originy"
- }
- ]
- },
- "36159": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#isenabled"
- }
- ]
- },
- "36160": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#isuserinteractionenabled"
- }
- ]
- },
- "36161": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "36162": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iosignoresafearea"
- }
- ]
- },
- "36163": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#islayoutvalid"
- }
- ]
- },
- "36164": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#csstype"
- }
- ]
- },
- "36165": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#cssclasses"
- }
- ]
- },
- "36166": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#csspseudoclasses"
- }
- ]
- },
- "36167": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/FlexboxLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36171": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/FlexboxLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36178": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/FlexboxLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "36180": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/FlexboxLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "36182": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/FlexboxLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "36184": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/FlexboxLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36188": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/FlexboxLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36194": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/FlexboxLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36198": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/FlexboxLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36204": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/FlexboxLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "36206": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/FlexboxLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "36209": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/FlexboxLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "36217": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/FlexboxLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/FlexboxLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/FlexboxLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/FlexboxLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/FlexboxLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "36260": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#modal"
- }
- ]
- },
- "36261": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/FlexboxLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "36264": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/FlexboxLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "36267": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/FlexboxLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "36274": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/FlexboxLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "36276": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/FlexboxLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "36278": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/FlexboxLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "36281": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/FlexboxLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "36283": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/FlexboxLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "36295": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/FlexboxLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "36297": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/FlexboxLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "36299": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/FlexboxLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "36301": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/FlexboxLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36307": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/FlexboxLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36309": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/FlexboxLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "36311": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/FlexboxLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36313": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/FlexboxLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36319": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/FlexboxLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36322": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/FlexboxLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36325": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/FlexboxLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36394": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/FlexboxLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "36400": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/FlexboxLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36405": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/FlexboxLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36407": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/FlexboxLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36409": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/FlexboxLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "36412": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/FlexboxLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "36415": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/FlexboxLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "36419": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#testid"
- }
- ]
- },
- "36420": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#touchanimation"
- }
- ]
- },
- "36421": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#ignoretouchanimation"
- }
- ]
- },
- "36422": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#touchdelay"
- }
- ]
- },
- "36423": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#closemodalcallback"
- }
- ]
- },
- "36424": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#transitionid"
- }
- ]
- },
- "36425": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#islayoutvalid"
- }
- ]
- },
- "36426": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/FlexboxLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36428": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/FlexboxLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36431": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36439": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36447": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36455": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/FlexboxLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "36458": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/FlexboxLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36461": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/FlexboxLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36465": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/FlexboxLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36471": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/FlexboxLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36473": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/FlexboxLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36475": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/FlexboxLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36477": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/FlexboxLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "36481": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/FlexboxLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "36485": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/FlexboxLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "36489": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/FlexboxLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "36493": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/FlexboxLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36495": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/FlexboxLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36501": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/FlexboxLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36503": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/FlexboxLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36507": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#domnode"
- }
- ]
- },
- "36508": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#recyclenativeview"
- }
- ]
- },
- "36509": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#viewcontroller"
- }
- ]
- },
- "36510": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#nativeviewprotected"
- }
- ]
- },
- "36511": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#parent"
- }
- ]
- },
- "36512": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#iscollapsed"
- }
- ]
- },
- "36513": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#id"
- }
- ]
- },
- "36514": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#classname"
- }
- ]
- },
- "36515": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#sharedtransitiontag"
- }
- ]
- },
- "36516": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#sharedtransitionignore"
- }
- ]
- },
- "36517": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#domid"
- }
- ]
- },
- "36518": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#context"
- }
- ]
- },
- "36519": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "36520": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#cssstate"
- }
- ]
- },
- "36521": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#stylescope"
- }
- ]
- },
- "36526": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#suspendnativeupdatescount"
- }
- ]
- },
- "36527": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#isstylescopehost"
- }
- ]
- },
- "36528": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "36529": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#left"
- }
- ]
- },
- "36530": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#top"
- }
- ]
- },
- "36531": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveleft"
- }
- ]
- },
- "36532": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivetop"
- }
- ]
- },
- "36533": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#dock"
- }
- ]
- },
- "36534": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#row"
- }
- ]
- },
- "36535": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#col"
- }
- ]
- },
- "36536": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#column"
- }
- ]
- },
- "36537": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#rowspan"
- }
- ]
- },
- "36538": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#colspan"
- }
- ]
- },
- "36539": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#columnspan"
- }
- ]
- },
- "36540": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#order"
- }
- ]
- },
- "36541": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#flexgrow"
- }
- ]
- },
- "36542": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#flexshrink"
- }
- ]
- },
- "36543": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#flexwrapbefore"
- }
- ]
- },
- "36544": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#alignself"
- }
- ]
- },
- "36545": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#oldleft"
- }
- ]
- },
- "36546": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#oldtop"
- }
- ]
- },
- "36547": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#oldright"
- }
- ]
- },
- "36548": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#oldbottom"
- }
- ]
- },
- "36549": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "36550": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveminwidth"
- }
- ]
- },
- "36551": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveminheight"
- }
- ]
- },
- "36552": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivewidth"
- }
- ]
- },
- "36553": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveheight"
- }
- ]
- },
- "36554": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivemargintop"
- }
- ]
- },
- "36555": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivemarginright"
- }
- ]
- },
- "36556": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivemarginbottom"
- }
- ]
- },
- "36557": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivemarginleft"
- }
- ]
- },
- "36558": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivepaddingtop"
- }
- ]
- },
- "36559": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivepaddingright"
- }
- ]
- },
- "36560": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivepaddingbottom"
- }
- ]
- },
- "36561": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivepaddingleft"
- }
- ]
- },
- "36562": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectivebordertopwidth"
- }
- ]
- },
- "36563": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveborderrightwidth"
- }
- ]
- },
- "36564": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "36565": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#effectiveborderleftwidth"
- }
- ]
- },
- "36566": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#defaultpaddingtop"
- }
- ]
- },
- "36567": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#defaultpaddingright"
- }
- ]
- },
- "36568": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#defaultpaddingbottom"
- }
- ]
- },
- "36569": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#defaultpaddingleft"
- }
- ]
- },
- "36570": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/FlexboxLayout#ispaddingrelative"
- }
- ]
- },
- "36572": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/FlexboxLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/FlexboxLayout#reusable"
- }
- ]
- },
- "36573": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/FlexboxLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "36577": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/FlexboxLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "36581": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/FlexboxLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "36583": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/FlexboxLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "36587": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/FlexboxLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "36589": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/FlexboxLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "36593": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/FlexboxLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "36597": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/FlexboxLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "36601": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/FlexboxLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/FlexboxLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "36603": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/FlexboxLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36605": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/FlexboxLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36609": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/FlexboxLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36611": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/FlexboxLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36613": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/FlexboxLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36616": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/FlexboxLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36619": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/FlexboxLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "36625": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/FlexboxLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36627": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/FlexboxLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36629": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/FlexboxLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36632": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/FlexboxLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36635": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/FlexboxLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36639": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/FlexboxLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36642": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/FlexboxLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36646": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/FlexboxLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36650": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/FlexboxLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36653": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/FlexboxLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "36655": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/FlexboxLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36658": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/FlexboxLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36661": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/FlexboxLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36664": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/FlexboxLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "36666": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/FlexboxLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36668": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/FlexboxLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36670": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/FlexboxLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36675": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/FlexboxLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36678": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/FlexboxLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36681": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/FlexboxLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36684": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/FlexboxLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "36687": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/FlexboxLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "36691": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/FlexboxLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36694": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/FlexboxLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "36698": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/FlexboxLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36701": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/FlexboxLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36704": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/FlexboxLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36706": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/FlexboxLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "36710": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/FlexboxLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36713": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/FlexboxLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36715": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/FlexboxLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36718": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/FlexboxLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "36721": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/FlexboxLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36725": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FlexboxLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36733": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/FlexboxLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36737": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/FlexboxLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36742": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/FlexboxLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "36745": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/FlexboxLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "36750": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/FlexboxLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/FlexboxLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/FlexboxLayout.md b/content/api/class/FlexboxLayout.md
deleted file mode 100644
index 670fc4b0..00000000
--- a/content/api/class/FlexboxLayout.md
+++ /dev/null
@@ -1,260 +0,0 @@
----
-title: FlexboxLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'FlexboxLayout'
-layout: api
-seo:
- description: FlexboxLayout
----
-
-
-
-
-
-
-exists(path: string): boolean",
- "url": "/api/class/Folder#exists-exists-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 237,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a Folder with the specified path already exists."
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1876": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Folder#constructor",
- "flags": {},
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/FileSystemEntity#constructor",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Folder(): Folder",
- "url": "/api/class/Folder#constructor-new-folder",
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/FileSystemEntity#constructor",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "parameters": [],
- "returns": "Folder"
- }
- ]
- },
- "1878": {
- "name": "isKnown",
- "type": "Property",
- "url": "/api/class/Folder#isknown",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether this instance is a KnownFolder (accessed through the KnownFolders object)."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isKnown: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 225,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether this instance is a KnownFolder (accessed through the KnownFolders object)."
- }
- ]
- },
- "url": "/api/class/Folder#isknown"
- }
- ]
- },
- "1879": {
- "name": "contains",
- "type": "Method",
- "url": "/api/class/Folder#contains",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "contains(name: string): boolean",
- "url": "/api/class/Folder#contains-contains-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 244,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether this Folder contains an Entity with the specified name.\nThe path of the folder is added to the name to resolve the complete path to check for."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the entity to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1882": {
- "name": "clear",
- "type": "Method",
- "url": "/api/class/Folder#clear",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "clear(): Promise<any>",
- "url": "/api/class/Folder#clear-clear-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 249,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Deletes all the files and folders (recursively), contained within this Folder."
- }
- ]
- },
- "parameters": [],
- "returns": "Promise<any>"
- }
- ]
- },
- "1884": {
- "name": "clearSync",
- "type": "Method",
- "url": "/api/class/Folder#clearsync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "clearSync(onError?: (error: any) => void): void",
- "url": "/api/class/Folder#clearsync-clearsync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 255,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Deletes all the files and folders (recursively), contained within this Folder synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some error occurs."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1890": {
- "name": "getFile",
- "type": "Method",
- "url": "/api/class/Folder#getfile",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getFile(name: string): File",
- "url": "/api/class/Folder#getfile-getfile-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or creates a File entity with the specified name within this Folder."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the file to get/create."
- }
- ]
- }
- }
- ],
- "returns": "File"
- }
- ]
- },
- "1893": {
- "name": "getFolder",
- "type": "Method",
- "url": "/api/class/Folder#getfolder",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getFolder(name: string): Folder",
- "url": "/api/class/Folder#getfolder-getfolder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 267,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or creates a Folder entity with the specified name within this Folder."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the folder to get/create."
- }
- ]
- }
- }
- ],
- "returns": "Folder"
- }
- ]
- },
- "1896": {
- "name": "getEntities",
- "type": "Method",
- "url": "/api/class/Folder#getentities",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getEntities(): Promise<FileSystemEntity[]>",
- "url": "/api/class/Folder#getentities-getentities-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets all the top-level entities residing within this folder."
- }
- ]
- },
- "parameters": [],
- "returns": "Promise<FileSystemEntity[]>"
- }
- ]
- },
- "1898": {
- "name": "getEntitiesSync",
- "type": "Method",
- "url": "/api/class/Folder#getentitiessync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getEntitiesSync(onError?: (error: any) => any): FileSystemEntity[]",
- "url": "/api/class/Folder#getentitiessync-getentitiessync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets all the top-level entities residing within this folder synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional function to be called if some error occurs."
- }
- ]
- }
- }
- ],
- "returns": "FileSystemEntity[]"
- }
- ]
- },
- "1904": {
- "name": "eachEntity",
- "type": "Method",
- "url": "/api/class/Folder#eachentity",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachEntity(onEntity: (entity: FileSystemEntity) => boolean): any",
- "url": "/api/class/Folder#eachentity-eachentity-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 284,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enumerates all the top-level FileSystem entities residing within this folder."
- }
- ]
- },
- "parameters": [
- {
- "name": "onEntity",
- "type": "(entity: FileSystemEntity) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A callback that receives the current entity. If the callback returns false this will mean for the iteration to stop."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1910": {
- "name": "lastModified",
- "type": "Property",
- "url": "/api/class/Folder#lastmodified",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Date object specifying the last time this entity was modified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "lastModified",
- "url": "/api/class/FileSystemEntity#lastmodified",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "lastModified: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "lastModified",
- "url": "/api/class/FileSystemEntity#lastmodified",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Date object specifying the last time this entity was modified."
- }
- ]
- },
- "url": "/api/class/Folder#lastmodified"
- }
- ]
- },
- "1911": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/Folder#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the entity."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/FileSystemEntity#name",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 36,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/FileSystemEntity#name",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the entity."
- }
- ]
- },
- "url": "/api/class/Folder#name"
- }
- ]
- },
- "1912": {
- "name": "path",
- "type": "Property",
- "url": "/api/class/Folder#path",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the fully-qualified path (including the extension for a File) of the entity."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "path",
- "url": "/api/class/FileSystemEntity#path",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "path: string",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "path",
- "url": "/api/class/FileSystemEntity#path",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the fully-qualified path (including the extension for a File) of the entity."
- }
- ]
- },
- "url": "/api/class/Folder#path"
- }
- ]
- },
- "1913": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Folder#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Folder object representing the parent of this entity.\nWill be null for a root folder like Documents or Temporary.\nThis property is readonly."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "parent",
- "url": "/api/class/FileSystemEntity#parent",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "code": "parent: Folder",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "parent",
- "url": "/api/class/FileSystemEntity#parent",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Folder object representing the parent of this entity.\nWill be null for a root folder like Documents or Temporary.\nThis property is readonly."
- }
- ]
- },
- "url": "/api/class/Folder#parent"
- }
- ]
- },
- "1914": {
- "name": "remove",
- "type": "Method",
- "url": "/api/class/Folder#remove",
- "flags": {},
- "inheritedFrom": {
- "name": "remove",
- "url": "/api/class/FileSystemEntity#remove",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "remove(): Promise<any>",
- "url": "/api/class/Folder#remove-remove-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "remove",
- "url": "/api/class/FileSystemEntity#remove",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes (deletes) the current Entity from the file system."
- }
- ]
- },
- "parameters": [],
- "returns": "Promise<any>"
- }
- ]
- },
- "1916": {
- "name": "removeSync",
- "type": "Method",
- "url": "/api/class/Folder#removesync",
- "flags": {},
- "inheritedFrom": {
- "name": "removeSync",
- "url": "/api/class/FileSystemEntity#removesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeSync(onError?: (error: any) => any): void",
- "url": "/api/class/Folder#removesync-removesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "removeSync",
- "url": "/api/class/FileSystemEntity#removesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes (deletes) the current Entity from the file system synchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1922": {
- "name": "rename",
- "type": "Method",
- "url": "/api/class/Folder#rename",
- "flags": {},
- "inheritedFrom": {
- "name": "rename",
- "url": "/api/class/FileSystemEntity#rename",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "rename(newName: string): Promise<any>",
- "url": "/api/class/Folder#rename-rename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "rename",
- "url": "/api/class/FileSystemEntity#rename",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Renames the current entity using the specified name."
- }
- ]
- },
- "parameters": [
- {
- "name": "newName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The new name to be applied to the entity."
- }
- ]
- }
- }
- ],
- "returns": "Promise<any>"
- }
- ]
- },
- "1925": {
- "name": "renameSync",
- "type": "Method",
- "url": "/api/class/Folder#renamesync",
- "flags": {},
- "inheritedFrom": {
- "name": "renameSync",
- "url": "/api/class/FileSystemEntity#renamesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "renameSync(newName: string, onError?: (error: any) => any): void",
- "url": "/api/class/Folder#renamesync-renamesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/file-system/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "renameSync",
- "url": "/api/class/FileSystemEntity#renamesync",
- "fromName": "FileSystemEntity",
- "fromUrl": "/api/class/FileSystemEntity"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Renames the current entity synchronously, using the specified name."
- }
- ]
- },
- "parameters": [
- {
- "name": "newName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The new name to be applied to the entity."
- }
- ]
- }
- },
- {
- "name": "onError",
- "type": "(error: any) => any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Folder.md b/content/api/class/Folder.md
deleted file mode 100644
index 310532ea..00000000
--- a/content/api/class/Folder.md
+++ /dev/null
@@ -1,206 +0,0 @@
----
-title: Folder
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Folder'
-layout: api
-seo:
- description: "Represents a Folder (directory) entity on the file system."
----
-
-
-
-
-
-
-fontFamily: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 7,
- "character": 8
- }
- ],
- "url": "/api/class/Font#fontfamily"
- }
- ]
- },
- "26251": {
- "name": "fontStyle",
- "type": "Property",
- "url": "/api/class/Font#fontstyle",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontStyle: FontStyleType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 8,
- "character": 8
- }
- ],
- "url": "/api/class/Font#fontstyle"
- }
- ]
- },
- "26252": {
- "name": "fontWeight",
- "type": "Property",
- "url": "/api/class/Font#fontweight",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontWeight: FontWeightType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 9,
- "character": 8
- }
- ],
- "url": "/api/class/Font#fontweight"
- }
- ]
- },
- "26253": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/Font#fontsize",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 10,
- "character": 8
- }
- ],
- "url": "/api/class/Font#fontsize"
- }
- ]
- },
- "26254": {
- "name": "fontScale",
- "type": "Property",
- "url": "/api/class/Font#fontscale",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 11,
- "character": 8
- }
- ],
- "url": "/api/class/Font#fontscale"
- }
- ]
- },
- "26255": {
- "name": "fontVariationSettings",
- "type": "Property",
- "url": "/api/class/Font#fontvariationsettings",
- "flags": {
- "isPublic": true,
- "isOptional": true
- },
- "signatures": [
- {
- "code": "fontVariationSettings?: FontVariationSettings[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 12,
- "character": 8
- }
- ],
- "url": "/api/class/Font#fontvariationsettings"
- }
- ]
- },
- "26256": {
- "name": "isBold",
- "type": "Property",
- "url": "/api/class/Font#isbold",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "isBold: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 14,
- "character": 8
- }
- ],
- "url": "/api/class/Font#isbold"
- }
- ]
- },
- "26257": {
- "name": "isItalic",
- "type": "Property",
- "url": "/api/class/Font#isitalic",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "isItalic: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 15,
- "character": 8
- }
- ],
- "url": "/api/class/Font#isitalic"
- }
- ]
- },
- "26258": {
- "name": "getAndroidTypeface",
- "type": "Method",
- "url": "/api/class/Font#getandroidtypeface",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getAndroidTypeface(): any",
- "url": "/api/class/Font#getandroidtypeface-getandroidtypeface-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "26260": {
- "name": "getUIFont",
- "type": "Method",
- "url": "/api/class/Font#getuifont",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getUIFont(defaultFont: any): any",
- "url": "/api/class/Font#getuifont-getuifont-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 20,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "defaultFont",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "26263": {
- "name": "withFontFamily",
- "type": "Method",
- "url": "/api/class/Font#withfontfamily",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withFontFamily(family: string): Font",
- "url": "/api/class/Font#withfontfamily-withfontfamily-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 22,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "family",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "Font"
- }
- ]
- },
- "26266": {
- "name": "withFontStyle",
- "type": "Method",
- "url": "/api/class/Font#withfontstyle",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withFontStyle(style: FontStyleType): Font",
- "url": "/api/class/Font#withfontstyle-withfontstyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "style",
- "type": "FontStyleType",
- "flags": {}
- }
- ],
- "returns": "Font"
- }
- ]
- },
- "26269": {
- "name": "withFontWeight",
- "type": "Method",
- "url": "/api/class/Font#withfontweight",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withFontWeight(weight: FontWeightType): Font",
- "url": "/api/class/Font#withfontweight-withfontweight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "weight",
- "type": "FontWeightType",
- "flags": {}
- }
- ],
- "returns": "Font"
- }
- ]
- },
- "26272": {
- "name": "withFontSize",
- "type": "Method",
- "url": "/api/class/Font#withfontsize",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withFontSize(size: number): Font",
- "url": "/api/class/Font#withfontsize-withfontsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 25,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Font"
- }
- ]
- },
- "26275": {
- "name": "withFontScale",
- "type": "Method",
- "url": "/api/class/Font#withfontscale",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withFontScale(scale: number): Font",
- "url": "/api/class/Font#withfontscale-withfontscale-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "scale",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "Font"
- }
- ]
- },
- "26278": {
- "name": "withFontVariationSettings",
- "type": "Method",
- "url": "/api/class/Font#withfontvariationsettings",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "withFontVariationSettings(variationSettings: FontVariationSettings[]): Font",
- "url": "/api/class/Font#withfontvariationsettings-withfontvariationsettings-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/font.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "variationSettings",
- "type": "FontVariationSettings[]",
- "flags": {}
- }
- ],
- "returns": "Font"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Font.md b/content/api/class/Font.md
deleted file mode 100644
index 66e5c952..00000000
--- a/content/api/class/Font.md
+++ /dev/null
@@ -1,302 +0,0 @@
----
-title: Font
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Font'
-layout: api
-seo:
- description: Font
----
-
-
-
-
-
-
-loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/FormattedString#loadedevent"
- }
- ]
- },
- "29229": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/FormattedString#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/FormattedString#unloadedevent"
- }
- ]
- },
- "29230": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/FormattedString#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/FormattedString#createdevent"
- }
- ]
- },
- "29231": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/FormattedString#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/FormattedString#disposenativeviewevent"
- }
- ]
- },
- "29232": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/FormattedString#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/FormattedString#propertychangeevent"
- }
- ]
- },
- "29233": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/FormattedString#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29241": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/FormattedString#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29249": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/FormattedString#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29257": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/FormattedString#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29265": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/FormattedString#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29273": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/FormattedString#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new FormattedString(): FormattedString",
- "url": "/api/class/FormattedString#constructor-new-formattedstring",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "FormattedString"
- }
- ]
- },
- "29275": {
- "name": "spans",
- "type": "Property",
- "url": "/api/class/FormattedString#spans",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An observable collection of Span objects used to define common text properties."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "spans: ObservableArray<Span>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 19,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An observable collection of Span objects used to define common text properties."
- }
- ]
- },
- "url": "/api/class/FormattedString#spans"
- }
- ]
- },
- "29276": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/FormattedString#tostring",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/FormattedString#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A human readable representation of the formatted string."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29278": {
- "name": "fontFamily",
- "type": "Property",
- "url": "/api/class/FormattedString#fontfamily",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font family which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontFamily: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 29,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font family which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#fontfamily"
- }
- ]
- },
- "29279": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/FormattedString#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font size which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 34,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font size which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#fontsize"
- }
- ]
- },
- "29280": {
- "name": "fontStyle",
- "type": "Property",
- "url": "/api/class/FormattedString#fontstyle",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font style which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontStyle: FontStyleType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 39,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font style which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#fontstyle"
- }
- ]
- },
- "29281": {
- "name": "fontWeight",
- "type": "Property",
- "url": "/api/class/FormattedString#fontweight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font weight which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontWeight: FontWeightType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 44,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font weight which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#fontweight"
- }
- ]
- },
- "29282": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/FormattedString#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 49,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#textdecoration"
- }
- ]
- },
- "29283": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/FormattedString#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font foreground color which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 54,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font foreground color which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#color"
- }
- ]
- },
- "29284": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/FormattedString#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font background color which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "backgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 59,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font background color which will be used for all spans that doesn't have a specific value."
- }
- ]
- },
- "url": "/api/class/FormattedString#backgroundcolor"
- }
- ]
- },
- "29285": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/FormattedString#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/FormattedString#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "29286": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/FormattedString#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/FormattedString#iosaccessibilityminfontscale"
- }
- ]
- },
- "29287": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/FormattedString#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/formatted-string.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/FormattedString#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "29288": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/FormattedString#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#domnode"
- }
- ]
- },
- "29289": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/FormattedString#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#recyclenativeview"
- }
- ]
- },
- "29290": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/FormattedString#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/FormattedString#viewcontroller"
- }
- ]
- },
- "29291": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/FormattedString#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#bindingcontext"
- }
- ]
- },
- "29292": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/FormattedString#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/FormattedString#nativeviewprotected"
- }
- ]
- },
- "29293": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/FormattedString#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/FormattedString#parent"
- }
- ]
- },
- "29294": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/FormattedString#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/FormattedString#iscollapsed"
- }
- ]
- },
- "29295": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/FormattedString#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/FormattedString#id"
- }
- ]
- },
- "29296": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/FormattedString#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/FormattedString#classname"
- }
- ]
- },
- "29297": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/FormattedString#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/FormattedString#sharedtransitiontag"
- }
- ]
- },
- "29298": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/FormattedString#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/FormattedString#sharedtransitionignore"
- }
- ]
- },
- "29299": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/FormattedString#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#domid"
- }
- ]
- },
- "29300": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/FormattedString#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#context"
- }
- ]
- },
- "29301": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/FormattedString#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#isaddedtonativevisualtree"
- }
- ]
- },
- "29302": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/FormattedString#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#cssstate"
- }
- ]
- },
- "29303": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/FormattedString#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#stylescope"
- }
- ]
- },
- "29308": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/FormattedString#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/FormattedString#suspendnativeupdatescount"
- }
- ]
- },
- "29309": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/FormattedString#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#isstylescopehost"
- }
- ]
- },
- "29310": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/FormattedString#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "29311": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/FormattedString#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#left"
- }
- ]
- },
- "29312": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/FormattedString#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#top"
- }
- ]
- },
- "29313": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveleft"
- }
- ]
- },
- "29314": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivetop"
- }
- ]
- },
- "29315": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/FormattedString#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#dock"
- }
- ]
- },
- "29316": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/FormattedString#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#row"
- }
- ]
- },
- "29317": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/FormattedString#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#col"
- }
- ]
- },
- "29318": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/FormattedString#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#column"
- }
- ]
- },
- "29319": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/FormattedString#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#rowspan"
- }
- ]
- },
- "29320": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/FormattedString#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#colspan"
- }
- ]
- },
- "29321": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/FormattedString#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#columnspan"
- }
- ]
- },
- "29322": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/FormattedString#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#order"
- }
- ]
- },
- "29323": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/FormattedString#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#flexgrow"
- }
- ]
- },
- "29324": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/FormattedString#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#flexshrink"
- }
- ]
- },
- "29325": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/FormattedString#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#flexwrapbefore"
- }
- ]
- },
- "29326": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/FormattedString#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#alignself"
- }
- ]
- },
- "29327": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/FormattedString#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#oldleft"
- }
- ]
- },
- "29328": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/FormattedString#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#oldtop"
- }
- ]
- },
- "29329": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/FormattedString#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#oldright"
- }
- ]
- },
- "29330": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/FormattedString#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#oldbottom"
- }
- ]
- },
- "29331": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/FormattedString#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#ignoreflexminwidthheightreset"
- }
- ]
- },
- "29332": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveminwidth"
- }
- ]
- },
- "29333": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveminheight"
- }
- ]
- },
- "29334": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivewidth"
- }
- ]
- },
- "29335": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveheight"
- }
- ]
- },
- "29336": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivemargintop"
- }
- ]
- },
- "29337": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivemarginright"
- }
- ]
- },
- "29338": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivemarginbottom"
- }
- ]
- },
- "29339": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivemarginleft"
- }
- ]
- },
- "29340": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivepaddingtop"
- }
- ]
- },
- "29341": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivepaddingright"
- }
- ]
- },
- "29342": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivepaddingbottom"
- }
- ]
- },
- "29343": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivepaddingleft"
- }
- ]
- },
- "29344": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/FormattedString#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectivebordertopwidth"
- }
- ]
- },
- "29345": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveborderrightwidth"
- }
- ]
- },
- "29346": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveborderbottomwidth"
- }
- ]
- },
- "29347": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/FormattedString#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#effectiveborderleftwidth"
- }
- ]
- },
- "29348": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/FormattedString#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#defaultpaddingtop"
- }
- ]
- },
- "29349": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/FormattedString#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#defaultpaddingright"
- }
- ]
- },
- "29350": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/FormattedString#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#defaultpaddingbottom"
- }
- ]
- },
- "29351": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/FormattedString#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#defaultpaddingleft"
- }
- ]
- },
- "29352": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/FormattedString#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#ispaddingrelative"
- }
- ]
- },
- "29354": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/FormattedString#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/FormattedString#reusable"
- }
- ]
- },
- "29355": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/FormattedString#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/FormattedString#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "29359": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/FormattedString#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/FormattedString#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29363": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/FormattedString#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/FormattedString#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29365": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/FormattedString#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/FormattedString#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "29369": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/FormattedString#android",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/FormattedString#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 280,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29371": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/FormattedString#ios",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/FormattedString#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 281,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29373": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/FormattedString#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/FormattedString#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "29375": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/FormattedString#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/FormattedString#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29379": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/FormattedString#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/FormattedString#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29383": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/FormattedString#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/FormattedString#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29387": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/FormattedString#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/FormattedString#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "29389": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/FormattedString#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/FormattedString#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29391": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/FormattedString#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/FormattedString#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29395": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/FormattedString#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/FormattedString#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29397": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/FormattedString#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/FormattedString#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29399": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/FormattedString#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/FormattedString#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29401": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/FormattedString#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/FormattedString#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29404": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/FormattedString#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/FormattedString#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29407": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/FormattedString#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/FormattedString#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29413": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/FormattedString#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/FormattedString#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29415": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/FormattedString#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/FormattedString#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29417": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/FormattedString#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#cssclasses"
- }
- ]
- },
- "29418": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/FormattedString#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/FormattedString#csspseudoclasses"
- }
- ]
- },
- "29419": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/FormattedString#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/FormattedString#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29422": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/FormattedString#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/FormattedString#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29425": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/FormattedString#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/FormattedString#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29429": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/FormattedString#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/FormattedString#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29432": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/FormattedString#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/FormattedString#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29434": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/FormattedString#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/FormattedString#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29440": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/FormattedString#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/FormattedString#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29444": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/FormattedString#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/FormattedString#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29448": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/FormattedString#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/FormattedString#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29451": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/FormattedString#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/FormattedString#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "29453": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/FormattedString#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/FormattedString#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29456": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/FormattedString#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/FormattedString#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29459": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/FormattedString#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/FormattedString#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29462": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/FormattedString#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/FormattedString#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "29464": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/FormattedString#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/FormattedString#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29466": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/FormattedString#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/FormattedString#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29468": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/FormattedString#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/FormattedString#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29470": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/FormattedString#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/FormattedString#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29473": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/FormattedString#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/FormattedString#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29478": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/FormattedString#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/FormattedString#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29481": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/FormattedString#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/FormattedString#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29484": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/FormattedString#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/FormattedString#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29487": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/FormattedString#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/FormattedString#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "29490": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/FormattedString#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/FormattedString#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29494": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/FormattedString#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/FormattedString#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29497": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/FormattedString#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/FormattedString#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29500": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/FormattedString#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/FormattedString#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29504": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/FormattedString#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/FormattedString#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29507": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/FormattedString#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/FormattedString#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29510": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/FormattedString#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/FormattedString#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29514": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/FormattedString#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/FormattedString#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29517": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/FormattedString#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/FormattedString#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/FormattedString#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "29524": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/FormattedString#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/FormattedString#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29527": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/FormattedString#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/FormattedString#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29529": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/FormattedString#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/FormattedString#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29532": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/FormattedString#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/FormattedString#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "29535": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/FormattedString#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/FormattedString#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29539": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/FormattedString#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29547": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/FormattedString#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29555": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/FormattedString#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29563": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/FormattedString#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29571": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/FormattedString#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/FormattedString#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29579": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/FormattedString#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/FormattedString#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29583": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/FormattedString#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/FormattedString#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29588": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/FormattedString#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/FormattedString#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29591": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/FormattedString#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/FormattedString#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "29596": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/FormattedString#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/FormattedString#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/FormattedString.md b/content/api/class/FormattedString.md
deleted file mode 100644
index b82d2cdc..00000000
--- a/content/api/class/FormattedString.md
+++ /dev/null
@@ -1,220 +0,0 @@
----
-title: FormattedString
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'FormattedString'
-layout: api
-seo:
- description: "A class used to create a formatted (rich text) string."
----
-
-
-
-
-
-
-goBack(): any",
- "url": "/api/class/Frame#goback-2-goback-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Navigates back using the navigation hierarchy (if any). Updates the Frame stack as needed.\nThis method will start from the topmost Frame and will recursively search for an instance that has the canGoBack operation available."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "13051": {
- "name": "defaultAnimatedNavigation",
- "type": "Property",
- "url": "/api/class/Frame#defaultanimatednavigation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if navigation transitions should be animated globally."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "defaultAnimatedNavigation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 120,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if navigation transitions should be animated globally."
- }
- ]
- },
- "url": "/api/class/Frame#defaultanimatednavigation"
- }
- ]
- },
- "13052": {
- "name": "defaultTransition",
- "type": "Property",
- "url": "/api/class/Frame#defaulttransition",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the default NavigationTransition for all frames across the app."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "defaultTransition: NavigationTransition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 125,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the default NavigationTransition for all frames across the app."
- }
- ]
- },
- "url": "/api/class/Frame#defaulttransition"
- }
- ]
- },
- "13053": {
- "name": "androidOptionSelectedEvent",
- "type": "Property",
- "url": "/api/class/Frame#androidoptionselectedevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "androidOptionSelectedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 9,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#androidoptionselectedevent"
- }
- ]
- },
- "13054": {
- "name": "_isEntryBackstackVisible",
- "type": "Method",
- "url": "/api/class/Frame#isentrybackstackvisible",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_isEntryBackstackVisible(entry: BackstackEntry): boolean",
- "url": "/api/class/Frame#isentrybackstackvisible-isentrybackstackvisible-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "entry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13057": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Frame#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Frame#layoutchangedevent"
- }
- ]
- },
- "13058": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Frame#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Frame#showingmodallyevent"
- }
- ]
- },
- "13059": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Frame#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Frame#shownmodallyevent"
- }
- ]
- },
- "13060": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityblurevent"
- }
- ]
- },
- "13061": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityfocusevent"
- }
- ]
- },
- "13062": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityfocuschangedevent"
- }
- ]
- },
- "13063": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Frame#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Frame#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "13072": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Frame#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Frame#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13080": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Frame#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Frame#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "13086": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Frame#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Frame#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "13090": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#accessibilityperformescapeevent"
- }
- ]
- },
- "13091": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Frame#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Frame#loadedevent"
- }
- ]
- },
- "13092": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Frame#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Frame#unloadedevent"
- }
- ]
- },
- "13093": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Frame#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Frame#createdevent"
- }
- ]
- },
- "13094": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Frame#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Frame#disposenativeviewevent"
- }
- ]
- },
- "13095": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Frame#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Frame#propertychangeevent"
- }
- ]
- },
- "13096": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Frame#on-4",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#on-4-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13104": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Frame#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13112": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Frame#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13120": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Frame#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13128": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Frame#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13136": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Frame#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Frame(): Frame",
- "url": "/api/class/Frame#constructor-new-frame",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "Frame"
- }
- ]
- },
- "13138": {
- "name": "goBack",
- "type": "Method",
- "url": "/api/class/Frame#goback",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "goBack(to?: BackstackEntry): any",
- "url": "/api/class/Frame#goback-goback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Navigates to the previous entry (if any) in the back stack."
- }
- ]
- },
- "parameters": [
- {
- "name": "to",
- "type": "BackstackEntry",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The backstack entry to navigate back to."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "13141": {
- "name": "canGoBack",
- "type": "Method",
- "url": "/api/class/Frame#cangoback",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "canGoBack(): boolean",
- "url": "/api/class/Frame#cangoback-cangoback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 55,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the goBack operation is available."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13143": {
- "name": "navigate",
- "type": "Method",
- "url": "/api/class/Frame#navigate",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "navigate(pageModuleName: string): any",
- "url": "/api/class/Frame#navigate-navigate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 65,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Navigates to a Page instance as described by the module name.\nThis method will require the module and will check for a Page property in the exports of the module."
- }
- ]
- },
- "parameters": [
- {
- "name": "pageModuleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to require starting from the application root.\nFor example if you want to navigate to page called \"myPage.js\" in a folder called \"subFolder\" and your root folder is \"app\" you can call navigate method like this:\nconst frames = require(\"@nativescript/core/ui/frame\");\nframes.topmost().navigate(\"app/subFolder/myPage\");"
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "navigate(create: () => Page): any",
- "url": "/api/class/Frame#navigate-navigate-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 71,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a new Page instance using the provided callback and navigates to that Page."
- }
- ]
- },
- "parameters": [
- {
- "name": "create",
- "type": "() => Page",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The function to be used to create the new Page instance."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "navigate(entry: NavigationEntry): any",
- "url": "/api/class/Frame#navigate-navigate-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 80,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Navigates to a Page resolved by the provided NavigationEntry object.\nSince there are a couple of ways to specify a Page instance through an entry, there is a resolution priority:\n 1. entry.moduleName\n 2. entry.create()"
- }
- ]
- },
- "parameters": [
- {
- "name": "entry",
- "type": "NavigationEntry",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The NavigationEntry instance."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "13152": {
- "name": "actionBarVisibility",
- "type": "Property",
- "url": "/api/class/Frame#actionbarvisibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Used to control the visibility the Navigation Bar in iOS and the Action Bar in Android."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "actionBarVisibility: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 85,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Used to control the visibility the Navigation Bar in iOS and the Action Bar in Android."
- }
- ]
- },
- "url": "/api/class/Frame#actionbarvisibility"
- }
- ]
- },
- "13153": {
- "name": "backStack",
- "type": "Property",
- "url": "/api/class/Frame#backstack",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the back stack of this instance."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "backStack: BackstackEntry[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 91,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the back stack of this instance."
- }
- ]
- },
- "url": "/api/class/Frame#backstack"
- }
- ]
- },
- "13154": {
- "name": "currentPage",
- "type": "Property",
- "url": "/api/class/Frame#currentpage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Page instance the Frame is currently navigated to."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "currentPage: Page",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 97,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Page instance the Frame is currently navigated to."
- }
- ]
- },
- "url": "/api/class/Frame#currentpage"
- }
- ]
- },
- "13155": {
- "name": "currentEntry",
- "type": "Property",
- "url": "/api/class/Frame#currententry",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the NavigationEntry instance the Frame is currently navigated to."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "currentEntry: NavigationEntry",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the NavigationEntry instance the Frame is currently navigated to."
- }
- ]
- },
- "url": "/api/class/Frame#currententry"
- }
- ]
- },
- "13156": {
- "name": "animated",
- "type": "Property",
- "url": "/api/class/Frame#animated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if navigation transitions should be animated."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "animated: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 109,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if navigation transitions should be animated."
- }
- ]
- },
- "url": "/api/class/Frame#animated"
- }
- ]
- },
- "13157": {
- "name": "transition",
- "type": "Property",
- "url": "/api/class/Frame#transition",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the default navigation transition for this frame."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "transition: NavigationTransition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 115,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the default navigation transition for this frame."
- }
- ]
- },
- "url": "/api/class/Frame#transition"
- }
- ]
- },
- "13158": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Frame#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the AndroidFrame object that represents the Android-specific APIs for this Frame. Valid when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: AndroidFrame",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 130,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the AndroidFrame object that represents the Android-specific APIs for this Frame. Valid when running on Android OS."
- }
- ]
- },
- "url": "/api/class/Frame#android"
- }
- ]
- },
- "13159": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Frame#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOSFrame object that represents the iOS-specific APIs for this Frame. Valid when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: iOSFrame",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 135,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOSFrame object that represents the iOS-specific APIs for this Frame. Valid when running on iOS."
- }
- ]
- },
- "url": "/api/class/Frame#ios"
- }
- ]
- },
- "13205": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Frame#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "navigatingTo",\n callback: (args: NavigationData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/Frame#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when navigation to the page has started."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatingTo\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigationData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "navigatedTo",\n callback: (args: NavigationData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/Frame#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when navigation to the page has finished."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatedTo\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigationData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13227": {
- "name": "_navigationQueue",
- "type": "Property",
- "url": "/api/class/Frame#navigationqueue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_navigationQueue: NavigationContext[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 13,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#navigationqueue"
- }
- ]
- },
- "13228": {
- "name": "_resolvedPage",
- "type": "Property",
- "url": "/api/class/Frame#resolvedpage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A reference of current page that is set earlier than current entry.\nUsing this property, methods like 'eachChildView' and '_childrenCount' gain access to page view\njust in time for calls like '_addView' to perform view-tree iterations."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_resolvedPage: Page",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 21,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A reference of current page that is set earlier than current entry.\nUsing this property, methods like 'eachChildView' and '_childrenCount' gain access to page view\njust in time for calls like '_addView' to perform view-tree iterations."
- }
- ]
- },
- "url": "/api/class/Frame#resolvedpage"
- }
- ]
- },
- "13229": {
- "name": "_isInFrameStack",
- "type": "Property",
- "url": "/api/class/Frame#isinframestack",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_isInFrameStack: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 24,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#isinframestack"
- }
- ]
- },
- "13230": {
- "name": "_addChildFromBuilder",
- "type": "Method",
- "url": "/api/class/Frame#addchildfrombuilder",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addChildFromBuilder(name: string, value: any): void",
- "url": "/api/class/Frame#addchildfrombuilder-addchildfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 38,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13234": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Frame#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Frame#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 39,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13236": {
- "name": "_removeEntry",
- "type": "Method",
- "url": "/api/class/Frame#removeentry",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeEntry(removed: BackstackEntry): void",
- "url": "/api/class/Frame#removeentry-removeentry-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 46,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "removed",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13239": {
- "name": "_processNextNavigationEntry",
- "type": "Method",
- "url": "/api/class/Frame#processnextnavigationentry",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_processNextNavigationEntry(): void",
- "url": "/api/class/Frame#processnextnavigationentry-processnextnavigationentry-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 58,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13241": {
- "name": "performGoBack",
- "type": "Method",
- "url": "/api/class/Frame#performgoback",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "performGoBack(navigationContext: NavigationContext): void",
- "url": "/api/class/Frame#performgoback-performgoback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "navigationContext",
- "type": "NavigationContext",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13244": {
- "name": "_goBackCore",
- "type": "Method",
- "url": "/api/class/Frame#gobackcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goBackCore(backstackEntry: BackstackEntry): void",
- "url": "/api/class/Frame#gobackcore-gobackcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 61,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "backstackEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13247": {
- "name": "_navigateCore",
- "type": "Method",
- "url": "/api/class/Frame#navigatecore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_navigateCore(backstackEntry: BackstackEntry): void",
- "url": "/api/class/Frame#navigatecore-navigatecore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 62,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "backstackEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13250": {
- "name": "_onNavigatingTo",
- "type": "Method",
- "url": "/api/class/Frame#onnavigatingto",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onNavigatingTo(backstackEntry: BackstackEntry, isBack: boolean): void",
- "url": "/api/class/Frame#onnavigatingto-onnavigatingto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "backstackEntry",
- "type": "BackstackEntry",
- "flags": {}
- },
- {
- "name": "isBack",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13254": {
- "name": "_popFromFrameStack",
- "type": "Method",
- "url": "/api/class/Frame#popfromframestack",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_popFromFrameStack(): void",
- "url": "/api/class/Frame#popfromframestack-popfromframestack-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13256": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Frame#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Frame#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 75,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13258": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Frame#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Frame#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13260": {
- "name": "_childrenCount",
- "type": "Accessor",
- "url": "/api/class/Frame#childrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get _childrenCount(): number",
- "url": "/api/class/Frame#childrencount-childrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "13262": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Frame#eachchildview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (child: View) => boolean): void",
- "url": "/api/class/Frame#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13268": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Frame#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(child: View): boolean",
- "url": "/api/class/Frame#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 83,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13271": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Frame#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(child: View): void",
- "url": "/api/class/Frame#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13274": {
- "name": "_printFrameBackStack",
- "type": "Method",
- "url": "/api/class/Frame#printframebackstack",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_printFrameBackStack(): void",
- "url": "/api/class/Frame#printframebackstack-printframebackstack-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 85,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13276": {
- "name": "_backstackEntryTrace",
- "type": "Method",
- "url": "/api/class/Frame#backstackentrytrace",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_backstackEntryTrace(b: BackstackEntry): string",
- "url": "/api/class/Frame#backstackentrytrace-backstackentrytrace-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 86,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "b",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "string"
- }
- ]
- },
- "13279": {
- "name": "_onLivesync",
- "type": "Method",
- "url": "/api/class/Frame#onlivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onLivesync(context?: ModuleContext): boolean",
- "url": "/api/class/Frame#onlivesync-onlivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 87,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "ModuleContext",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13282": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Frame#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: ModuleContext): boolean",
- "url": "/api/class/Frame#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "ModuleContext",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13285": {
- "name": "replacePage",
- "type": "Method",
- "url": "/api/class/Frame#replacepage",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "replacePage(entry: string | NavigationEntry): void",
- "url": "/api/class/Frame#replacepage-replacepage-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/frame/frame-common.d.ts",
- "line": 90,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13299": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Frame#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Frame#iosoverflowsafearea"
- }
- ]
- },
- "13300": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Frame#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Frame#bindingcontext"
- }
- ]
- },
- "13301": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Frame#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#bordercolor"
- }
- ]
- },
- "13302": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Frame#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#bordertopcolor"
- }
- ]
- },
- "13303": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Frame#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderrightcolor"
- }
- ]
- },
- "13304": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Frame#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderbottomcolor"
- }
- ]
- },
- "13305": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Frame#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderleftcolor"
- }
- ]
- },
- "13306": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Frame#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderwidth"
- }
- ]
- },
- "13307": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Frame#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Frame#bordertopwidth"
- }
- ]
- },
- "13308": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Frame#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderrightwidth"
- }
- ]
- },
- "13309": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Frame#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderbottomwidth"
- }
- ]
- },
- "13310": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Frame#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderleftwidth"
- }
- ]
- },
- "13311": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Frame#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderradius"
- }
- ]
- },
- "13312": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Frame#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Frame#bordertopleftradius"
- }
- ]
- },
- "13313": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Frame#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Frame#bordertoprightradius"
- }
- ]
- },
- "13314": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Frame#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderbottomrightradius"
- }
- ]
- },
- "13315": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Frame#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Frame#borderbottomleftradius"
- }
- ]
- },
- "13316": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Frame#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#color"
- }
- ]
- },
- "13317": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Frame#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Frame#accessible"
- }
- ]
- },
- "13318": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityhidden"
- }
- ]
- },
- "13319": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityidentifier"
- }
- ]
- },
- "13320": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityrole"
- }
- ]
- },
- "13321": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Frame#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Frame#accessibilitystate"
- }
- ]
- },
- "13322": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Frame#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilitylabel"
- }
- ]
- },
- "13323": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityvalue"
- }
- ]
- },
- "13324": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Frame#accessibilityhint"
- }
- ]
- },
- "13325": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Frame#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#accessibilityliveregion"
- }
- ]
- },
- "13326": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Frame#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Frame#accessibilitylanguage"
- }
- ]
- },
- "13327": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Frame#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Frame#accessibilitymediasession"
- }
- ]
- },
- "13328": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Frame#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Frame#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "13329": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Frame#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Frame#iosaccessibilityminfontscale"
- }
- ]
- },
- "13330": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Frame#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Frame#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "13331": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Frame#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Frame#androidcontentdescriptionupdated"
- }
- ]
- },
- "13332": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Frame#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#automationtext"
- }
- ]
- },
- "13333": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Frame#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Frame#androidelevation"
- }
- ]
- },
- "13334": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Frame#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Frame#androiddynamicelevationoffset"
- }
- ]
- },
- "13335": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Frame#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Frame#background"
- }
- ]
- },
- "13336": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Frame#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Frame#backgroundcolor"
- }
- ]
- },
- "13337": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Frame#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Frame#backgroundimage"
- }
- ]
- },
- "13338": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Frame#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Frame#boxshadow"
- }
- ]
- },
- "13339": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Frame#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Frame#minwidth"
- }
- ]
- },
- "13340": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Frame#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Frame#minheight"
- }
- ]
- },
- "13341": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Frame#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Frame#width"
- }
- ]
- },
- "13342": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Frame#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Frame#height"
- }
- ]
- },
- "13343": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Frame#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Frame#margin"
- }
- ]
- },
- "13344": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Frame#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Frame#marginleft"
- }
- ]
- },
- "13345": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Frame#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Frame#margintop"
- }
- ]
- },
- "13346": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Frame#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Frame#marginright"
- }
- ]
- },
- "13347": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Frame#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Frame#marginbottom"
- }
- ]
- },
- "13348": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Frame#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Frame#horizontalalignment"
- }
- ]
- },
- "13349": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Frame#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Frame#verticalalignment"
- }
- ]
- },
- "13350": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Frame#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Frame#visibility"
- }
- ]
- },
- "13351": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Frame#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Frame#opacity"
- }
- ]
- },
- "13352": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Frame#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Frame#rotate"
- }
- ]
- },
- "13353": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Frame#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Frame#rotatex"
- }
- ]
- },
- "13354": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Frame#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Frame#rotatey"
- }
- ]
- },
- "13355": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Frame#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Frame#perspective"
- }
- ]
- },
- "13356": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Frame#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Frame#translatex"
- }
- ]
- },
- "13357": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Frame#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Frame#translatey"
- }
- ]
- },
- "13358": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Frame#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Frame#scalex"
- }
- ]
- },
- "13359": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Frame#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Frame#scaley"
- }
- ]
- },
- "13360": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Frame#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Frame#originx"
- }
- ]
- },
- "13361": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Frame#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Frame#originy"
- }
- ]
- },
- "13362": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Frame#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Frame#isenabled"
- }
- ]
- },
- "13363": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Frame#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Frame#isuserinteractionenabled"
- }
- ]
- },
- "13364": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Frame#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Frame#iosoverflowsafeareaenabled"
- }
- ]
- },
- "13365": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Frame#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Frame#iosignoresafearea"
- }
- ]
- },
- "13366": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Frame#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Frame#islayoutvalid"
- }
- ]
- },
- "13367": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Frame#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Frame#csstype"
- }
- ]
- },
- "13368": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Frame#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#cssclasses"
- }
- ]
- },
- "13369": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Frame#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#csspseudoclasses"
- }
- ]
- },
- "13370": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Frame#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Frame#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13374": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Frame#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Frame#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13381": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Frame#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Frame#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "13383": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Frame#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Frame#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "13385": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Frame#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Frame#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "13387": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Frame#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Frame#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13391": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Frame#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Frame#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13397": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Frame#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Frame#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13401": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Frame#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Frame#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13407": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Frame#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Frame#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13409": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Frame#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Frame#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "13412": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Frame#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Frame#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "13420": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Frame#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Frame#modal"
- }
- ]
- },
- "13421": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Frame#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Frame#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "13424": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Frame#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Frame#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "13427": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Frame#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Frame#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "13434": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Frame#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Frame#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "13436": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Frame#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Frame#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "13438": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Frame#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Frame#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "13441": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Frame#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Frame#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "13443": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Frame#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Frame#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13455": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Frame#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Frame#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "13457": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Frame#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Frame#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13459": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Frame#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Frame#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "13461": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Frame#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Frame#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13467": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Frame#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Frame#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13469": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Frame#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Frame#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13471": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Frame#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Frame#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13473": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Frame#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Frame#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13476": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Frame#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Frame#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13479": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Frame#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Frame#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13542": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Frame#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Frame#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13547": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Frame#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Frame#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13549": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Frame#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Frame#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13551": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Frame#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Frame#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13554": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Frame#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Frame#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "13557": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Frame#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Frame#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "13561": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Frame#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#testid"
- }
- ]
- },
- "13562": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Frame#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#touchanimation"
- }
- ]
- },
- "13563": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Frame#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#ignoretouchanimation"
- }
- ]
- },
- "13564": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Frame#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#touchdelay"
- }
- ]
- },
- "13565": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Frame#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#closemodalcallback"
- }
- ]
- },
- "13566": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Frame#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Frame#transitionid"
- }
- ]
- },
- "13567": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Frame#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#islayoutvalid"
- }
- ]
- },
- "13568": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Frame#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Frame#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13571": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Frame#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13579": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Frame#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13587": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Frame#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13595": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Frame#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Frame#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "13598": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Frame#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Frame#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13601": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Frame#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Frame#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13605": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Frame#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Frame#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13611": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Frame#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Frame#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13613": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Frame#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Frame#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13615": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Frame#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Frame#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13617": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Frame#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Frame#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "13621": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Frame#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Frame#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "13625": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Frame#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Frame#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "13629": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Frame#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Frame#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "13633": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Frame#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Frame#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13635": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Frame#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Frame#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13641": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Frame#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Frame#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13643": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Frame#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Frame#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13647": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Frame#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#domnode"
- }
- ]
- },
- "13648": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Frame#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#recyclenativeview"
- }
- ]
- },
- "13649": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Frame#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Frame#viewcontroller"
- }
- ]
- },
- "13650": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Frame#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Frame#nativeviewprotected"
- }
- ]
- },
- "13651": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Frame#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Frame#parent"
- }
- ]
- },
- "13652": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Frame#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Frame#iscollapsed"
- }
- ]
- },
- "13653": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Frame#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Frame#id"
- }
- ]
- },
- "13654": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Frame#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Frame#classname"
- }
- ]
- },
- "13655": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Frame#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Frame#sharedtransitiontag"
- }
- ]
- },
- "13656": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Frame#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Frame#sharedtransitionignore"
- }
- ]
- },
- "13657": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Frame#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#domid"
- }
- ]
- },
- "13658": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Frame#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#context"
- }
- ]
- },
- "13659": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Frame#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#isaddedtonativevisualtree"
- }
- ]
- },
- "13660": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Frame#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#cssstate"
- }
- ]
- },
- "13661": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Frame#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#stylescope"
- }
- ]
- },
- "13666": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Frame#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Frame#suspendnativeupdatescount"
- }
- ]
- },
- "13667": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Frame#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#isstylescopehost"
- }
- ]
- },
- "13668": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Frame#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "13669": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Frame#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#left"
- }
- ]
- },
- "13670": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Frame#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#top"
- }
- ]
- },
- "13671": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Frame#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveleft"
- }
- ]
- },
- "13672": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Frame#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivetop"
- }
- ]
- },
- "13673": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Frame#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#dock"
- }
- ]
- },
- "13674": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Frame#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#row"
- }
- ]
- },
- "13675": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Frame#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#col"
- }
- ]
- },
- "13676": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Frame#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#column"
- }
- ]
- },
- "13677": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Frame#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#rowspan"
- }
- ]
- },
- "13678": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Frame#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#colspan"
- }
- ]
- },
- "13679": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Frame#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#columnspan"
- }
- ]
- },
- "13680": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Frame#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#order"
- }
- ]
- },
- "13681": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Frame#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#flexgrow"
- }
- ]
- },
- "13682": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Frame#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#flexshrink"
- }
- ]
- },
- "13683": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Frame#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#flexwrapbefore"
- }
- ]
- },
- "13684": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Frame#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#alignself"
- }
- ]
- },
- "13685": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Frame#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#oldleft"
- }
- ]
- },
- "13686": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Frame#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#oldtop"
- }
- ]
- },
- "13687": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Frame#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#oldright"
- }
- ]
- },
- "13688": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Frame#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#oldbottom"
- }
- ]
- },
- "13689": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Frame#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#ignoreflexminwidthheightreset"
- }
- ]
- },
- "13690": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Frame#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveminwidth"
- }
- ]
- },
- "13691": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Frame#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveminheight"
- }
- ]
- },
- "13692": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Frame#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivewidth"
- }
- ]
- },
- "13693": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Frame#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveheight"
- }
- ]
- },
- "13694": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Frame#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivemargintop"
- }
- ]
- },
- "13695": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Frame#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivemarginright"
- }
- ]
- },
- "13696": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Frame#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivemarginbottom"
- }
- ]
- },
- "13697": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Frame#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivemarginleft"
- }
- ]
- },
- "13698": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Frame#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivepaddingtop"
- }
- ]
- },
- "13699": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Frame#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivepaddingright"
- }
- ]
- },
- "13700": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Frame#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivepaddingbottom"
- }
- ]
- },
- "13701": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Frame#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivepaddingleft"
- }
- ]
- },
- "13702": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Frame#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectivebordertopwidth"
- }
- ]
- },
- "13703": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Frame#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveborderrightwidth"
- }
- ]
- },
- "13704": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Frame#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveborderbottomwidth"
- }
- ]
- },
- "13705": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Frame#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#effectiveborderleftwidth"
- }
- ]
- },
- "13706": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Frame#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#defaultpaddingtop"
- }
- ]
- },
- "13707": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Frame#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#defaultpaddingright"
- }
- ]
- },
- "13708": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Frame#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#defaultpaddingbottom"
- }
- ]
- },
- "13709": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Frame#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#defaultpaddingleft"
- }
- ]
- },
- "13710": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Frame#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "url": "/api/class/Frame#ispaddingrelative"
- }
- ]
- },
- "13712": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Frame#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Frame#reusable"
- }
- ]
- },
- "13713": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Frame#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Frame#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "13717": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Frame#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Frame#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "13721": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Frame#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Frame#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "13723": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Frame#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Frame#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "13727": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Frame#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Frame#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13729": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Frame#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Frame#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "13733": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Frame#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Frame#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "13737": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Frame#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Frame#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "13741": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Frame#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Frame#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "13743": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Frame#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Frame#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13745": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Frame#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Frame#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13749": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Frame#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Frame#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13751": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Frame#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Frame#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13753": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Frame#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Frame#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13756": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Frame#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Frame#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13759": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Frame#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Frame#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "13765": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Frame#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Frame#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13767": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Frame#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Frame#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13769": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Frame#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Frame#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13772": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Frame#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Frame#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13775": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Frame#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Frame#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13779": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Frame#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Frame#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13782": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Frame#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Frame#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13786": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Frame#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Frame#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13790": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Frame#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Frame#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13793": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Frame#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Frame#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "13795": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Frame#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Frame#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13798": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Frame#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Frame#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13801": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Frame#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Frame#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13804": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Frame#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Frame#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "13806": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Frame#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Frame#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13808": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Frame#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Frame#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13810": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Frame#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Frame#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13815": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Frame#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Frame#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13818": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Frame#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Frame#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13821": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Frame#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Frame#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13824": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Frame#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Frame#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "13827": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Frame#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Frame#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13831": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Frame#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Frame#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13834": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Frame#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Frame#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13837": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Frame#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Frame#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "13839": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Frame#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Frame#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "13843": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Frame#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Frame#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13847": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Frame#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Frame#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "13850": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Frame#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Frame#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13854": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Frame#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Frame#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13862": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Frame#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Frame#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13866": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Frame#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Frame#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "13871": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Frame#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Frame#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "13874": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Frame#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Frame#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "13879": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Frame#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Frame#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "FrameBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Frame.md b/content/api/class/Frame.md
deleted file mode 100644
index 6032abe0..00000000
--- a/content/api/class/Frame.md
+++ /dev/null
@@ -1,290 +0,0 @@
----
-title: Frame
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Frame'
-layout: api
-seo:
- description: "Represents the logical View unit that is responsible for navigation within an application.\nNested frames are supported, enabling hierarchical navigation scenarios."
----
-
-
-
-
-
-
-disconnect(): any",
- "url": "/api/class/GesturesObserver#disconnect-disconnect-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/index.d.ts",
- "line": 301,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Disconnects the gesture observer."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "13992": {
- "name": "type",
- "type": "Property",
- "url": "/api/class/GesturesObserver#type",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gesture type attached to the observer."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "type: GestureTypes",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/index.d.ts",
- "line": 306,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gesture type attached to the observer."
- }
- ]
- },
- "url": "/api/class/GesturesObserver#type"
- }
- ]
- },
- "13993": {
- "name": "callback",
- "type": "Property",
- "url": "/api/class/GesturesObserver#callback",
- "flags": {},
- "signatures": [
- {
- "code": "callback: (args: GestureEventData) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/index.d.ts",
- "line": 311,
- "character": 1
- }
- ],
- "url": "/api/class/GesturesObserver#callback"
- }
- ]
- },
- "13997": {
- "name": "context",
- "type": "Property",
- "url": "/api/class/GesturesObserver#context",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A context which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " in callback execution."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/index.d.ts",
- "line": 316,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A context which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " in callback execution."
- }
- ]
- },
- "url": "/api/class/GesturesObserver#context"
- }
- ]
- },
- "13998": {
- "name": "androidOnTouchEvent",
- "type": "Property",
- "url": "/api/class/GesturesObserver#androidontouchevent",
- "flags": {},
- "signatures": [
- {
- "code": "androidOnTouchEvent: (motionEvent: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/index.d.ts",
- "line": 321,
- "character": 1
- }
- ],
- "url": "/api/class/GesturesObserver#androidontouchevent"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/GesturesObserver.md b/content/api/class/GesturesObserver.md
deleted file mode 100644
index a510ffe9..00000000
--- a/content/api/class/GesturesObserver.md
+++ /dev/null
@@ -1,136 +0,0 @@
----
-title: GesturesObserver
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'GesturesObserver'
-layout: api
-seo:
- description: "Provides options for the GesturesObserver."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/GridLayout#layoutchangedevent"
- }
- ]
- },
- "36783": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/GridLayout#showingmodallyevent"
- }
- ]
- },
- "36784": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/GridLayout#shownmodallyevent"
- }
- ]
- },
- "36785": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityblurevent"
- }
- ]
- },
- "36786": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityfocusevent"
- }
- ]
- },
- "36787": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "36788": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/GridLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/GridLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "36797": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/GridLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/GridLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36805": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/GridLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/GridLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "36811": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/GridLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/GridLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "36815": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "36816": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/GridLayout#loadedevent"
- }
- ]
- },
- "36817": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/GridLayout#unloadedevent"
- }
- ]
- },
- "36818": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/GridLayout#createdevent"
- }
- ]
- },
- "36819": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/GridLayout#disposenativeviewevent"
- }
- ]
- },
- "36820": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/GridLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/GridLayout#propertychangeevent"
- }
- ]
- },
- "36821": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/GridLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36829": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/GridLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36837": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/GridLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36845": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/GridLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36853": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/GridLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36861": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/GridLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new GridLayout(): GridLayout",
- "url": "/api/class/GridLayout#constructor-new-gridlayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "GridLayout"
- }
- ]
- },
- "36863": {
- "name": "addColumn",
- "type": "Method",
- "url": "/api/class/GridLayout#addcolumn",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addColumn(itemSpec: ItemSpec): void",
- "url": "/api/class/GridLayout#addcolumn-addcolumn-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 93,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a column specification to a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36866": {
- "name": "addRow",
- "type": "Method",
- "url": "/api/class/GridLayout#addrow",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addRow(itemSpec: ItemSpec): void",
- "url": "/api/class/GridLayout#addrow-addrow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 98,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a row specification to a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36869": {
- "name": "addChildAtCell",
- "type": "Method",
- "url": "/api/class/GridLayout#addchildatcell",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChildAtCell(view: View, row: number, column: number, rowSpan?: number, columnSpan?: number): void",
- "url": "/api/class/GridLayout#addchildatcell-addchildatcell-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a child at specific cell in GridLayout. Optional rowSpan and columnSpan attributes"
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {}
- },
- {
- "name": "row",
- "type": "number",
- "flags": {}
- },
- {
- "name": "column",
- "type": "number",
- "flags": {}
- },
- {
- "name": "rowSpan",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "columnSpan",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36876": {
- "name": "removeColumn",
- "type": "Method",
- "url": "/api/class/GridLayout#removecolumn",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeColumn(itemSpec: ItemSpec): void",
- "url": "/api/class/GridLayout#removecolumn-removecolumn-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 108,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes a column specification from a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36879": {
- "name": "removeColumns",
- "type": "Method",
- "url": "/api/class/GridLayout#removecolumns",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeColumns(): void",
- "url": "/api/class/GridLayout#removecolumns-removecolumns-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 113,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all column specifications from a GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36881": {
- "name": "removeRow",
- "type": "Method",
- "url": "/api/class/GridLayout#removerow",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeRow(itemSpec: ItemSpec): void",
- "url": "/api/class/GridLayout#removerow-removerow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 118,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes a row specification from a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36884": {
- "name": "removeRows",
- "type": "Method",
- "url": "/api/class/GridLayout#removerows",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeRows(): void",
- "url": "/api/class/GridLayout#removerows-removerows-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 123,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all row specifications from a GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36886": {
- "name": "getColumns",
- "type": "Method",
- "url": "/api/class/GridLayout#getcolumns",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getColumns(): ItemSpec[]",
- "url": "/api/class/GridLayout#getcolumns-getcolumns-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 128,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets array of column specifications defined on this instance of GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "ItemSpec[]"
- }
- ]
- },
- "36888": {
- "name": "getRows",
- "type": "Method",
- "url": "/api/class/GridLayout#getrows",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getRows(): ItemSpec[]",
- "url": "/api/class/GridLayout#getrows-getrows-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 133,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets array of row specifications defined on this instance of GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "ItemSpec[]"
- }
- ]
- },
- "36904": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/GridLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/GridLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "36906": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/GridLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/GridLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "36909": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/GridLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/GridLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "36912": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/GridLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/GridLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36915": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/GridLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/GridLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36919": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/GridLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/GridLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36922": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/GridLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/GridLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "36924": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/GridLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/GridLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36927": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/GridLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/GridLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36930": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/GridLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/GridLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "36937": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/GridLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/GridLayout#padding"
- }
- ]
- },
- "36938": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/GridLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/GridLayout#paddingbottom"
- }
- ]
- },
- "36939": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/GridLayout#paddingleft"
- }
- ]
- },
- "36940": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/GridLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/GridLayout#paddingright"
- }
- ]
- },
- "36941": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/GridLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/GridLayout#paddingtop"
- }
- ]
- },
- "36942": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/GridLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/GridLayout#cliptobounds"
- }
- ]
- },
- "36943": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/GridLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#ispassthroughparentenabled"
- }
- ]
- },
- "36955": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/GridLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/GridLayout#iosoverflowsafearea"
- }
- ]
- },
- "36956": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/GridLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/GridLayout#android"
- }
- ]
- },
- "36957": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/GridLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/GridLayout#ios"
- }
- ]
- },
- "36958": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/GridLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/GridLayout#bindingcontext"
- }
- ]
- },
- "36959": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/GridLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#bordercolor"
- }
- ]
- },
- "36960": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/GridLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#bordertopcolor"
- }
- ]
- },
- "36961": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/GridLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderrightcolor"
- }
- ]
- },
- "36962": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/GridLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderbottomcolor"
- }
- ]
- },
- "36963": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/GridLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderleftcolor"
- }
- ]
- },
- "36964": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderwidth"
- }
- ]
- },
- "36965": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#bordertopwidth"
- }
- ]
- },
- "36966": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderrightwidth"
- }
- ]
- },
- "36967": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderbottomwidth"
- }
- ]
- },
- "36968": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderleftwidth"
- }
- ]
- },
- "36969": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/GridLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderradius"
- }
- ]
- },
- "36970": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/GridLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#bordertopleftradius"
- }
- ]
- },
- "36971": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/GridLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#bordertoprightradius"
- }
- ]
- },
- "36972": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/GridLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderbottomrightradius"
- }
- ]
- },
- "36973": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/GridLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#borderbottomleftradius"
- }
- ]
- },
- "36974": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/GridLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#color"
- }
- ]
- },
- "36975": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/GridLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessible"
- }
- ]
- },
- "36976": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityhidden"
- }
- ]
- },
- "36977": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityidentifier"
- }
- ]
- },
- "36978": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityrole"
- }
- ]
- },
- "36979": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilitystate"
- }
- ]
- },
- "36980": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilitylabel"
- }
- ]
- },
- "36981": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityvalue"
- }
- ]
- },
- "36982": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilityhint"
- }
- ]
- },
- "36983": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#accessibilityliveregion"
- }
- ]
- },
- "36984": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilitylanguage"
- }
- ]
- },
- "36985": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/GridLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/GridLayout#accessibilitymediasession"
- }
- ]
- },
- "36986": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/GridLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/GridLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "36987": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/GridLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/GridLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "36988": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/GridLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/GridLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "36989": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/GridLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/GridLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "36990": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/GridLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#automationtext"
- }
- ]
- },
- "36991": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/GridLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/GridLayout#androidelevation"
- }
- ]
- },
- "36992": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/GridLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/GridLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "36993": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/GridLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/GridLayout#background"
- }
- ]
- },
- "36994": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/GridLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#backgroundcolor"
- }
- ]
- },
- "36995": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/GridLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#backgroundimage"
- }
- ]
- },
- "36996": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/GridLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#boxshadow"
- }
- ]
- },
- "36997": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/GridLayout#minwidth"
- }
- ]
- },
- "36998": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/GridLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/GridLayout#minheight"
- }
- ]
- },
- "36999": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/GridLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#width"
- }
- ]
- },
- "37000": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/GridLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#height"
- }
- ]
- },
- "37001": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/GridLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/GridLayout#margin"
- }
- ]
- },
- "37002": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/GridLayout#marginleft"
- }
- ]
- },
- "37003": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/GridLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/GridLayout#margintop"
- }
- ]
- },
- "37004": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/GridLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/GridLayout#marginright"
- }
- ]
- },
- "37005": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/GridLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/GridLayout#marginbottom"
- }
- ]
- },
- "37006": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/GridLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/GridLayout#horizontalalignment"
- }
- ]
- },
- "37007": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/GridLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/GridLayout#verticalalignment"
- }
- ]
- },
- "37008": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/GridLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#visibility"
- }
- ]
- },
- "37009": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/GridLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/GridLayout#opacity"
- }
- ]
- },
- "37010": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/GridLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/GridLayout#rotate"
- }
- ]
- },
- "37011": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/GridLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/GridLayout#rotatex"
- }
- ]
- },
- "37012": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/GridLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/GridLayout#rotatey"
- }
- ]
- },
- "37013": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/GridLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/GridLayout#perspective"
- }
- ]
- },
- "37014": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/GridLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/GridLayout#translatex"
- }
- ]
- },
- "37015": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/GridLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/GridLayout#translatey"
- }
- ]
- },
- "37016": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/GridLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#scalex"
- }
- ]
- },
- "37017": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/GridLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#scaley"
- }
- ]
- },
- "37018": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/GridLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#originx"
- }
- ]
- },
- "37019": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/GridLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#originy"
- }
- ]
- },
- "37020": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/GridLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#isenabled"
- }
- ]
- },
- "37021": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/GridLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/GridLayout#isuserinteractionenabled"
- }
- ]
- },
- "37022": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/GridLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/GridLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "37023": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/GridLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/GridLayout#iosignoresafearea"
- }
- ]
- },
- "37024": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/GridLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/GridLayout#islayoutvalid"
- }
- ]
- },
- "37025": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/GridLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/GridLayout#csstype"
- }
- ]
- },
- "37026": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/GridLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#cssclasses"
- }
- ]
- },
- "37027": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/GridLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#csspseudoclasses"
- }
- ]
- },
- "37028": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/GridLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/GridLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37032": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/GridLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/GridLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37039": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/GridLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/GridLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37041": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/GridLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/GridLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37043": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/GridLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/GridLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37045": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/GridLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/GridLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37049": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/GridLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/GridLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37055": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/GridLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/GridLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37059": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/GridLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/GridLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37065": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/GridLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/GridLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37067": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/GridLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/GridLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "37070": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/GridLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/GridLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "37078": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/GridLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/GridLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/GridLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/GridLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/GridLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/GridLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "37121": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/GridLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/GridLayout#modal"
- }
- ]
- },
- "37122": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/GridLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/GridLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "37125": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/GridLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/GridLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "37128": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/GridLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/GridLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "37135": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/GridLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/GridLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "37137": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/GridLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/GridLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "37139": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/GridLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/GridLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "37142": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/GridLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/GridLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "37144": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/GridLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/GridLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37156": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/GridLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/GridLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37158": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/GridLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/GridLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37160": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/GridLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/GridLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "37162": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/GridLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/GridLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37168": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/GridLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/GridLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37170": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/GridLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/GridLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37172": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/GridLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/GridLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37174": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/GridLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/GridLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37180": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/GridLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/GridLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37183": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/GridLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/GridLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37186": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/GridLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/GridLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37255": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/GridLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/GridLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "37261": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/GridLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/GridLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37266": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/GridLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/GridLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37268": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/GridLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/GridLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37270": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/GridLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/GridLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "37273": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/GridLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/GridLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "37276": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/GridLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/GridLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "37280": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/GridLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#testid"
- }
- ]
- },
- "37281": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/GridLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#touchanimation"
- }
- ]
- },
- "37282": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/GridLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#ignoretouchanimation"
- }
- ]
- },
- "37283": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/GridLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#touchdelay"
- }
- ]
- },
- "37284": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/GridLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#closemodalcallback"
- }
- ]
- },
- "37285": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/GridLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/GridLayout#transitionid"
- }
- ]
- },
- "37286": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/GridLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#islayoutvalid"
- }
- ]
- },
- "37287": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/GridLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/GridLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37289": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/GridLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/GridLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37292": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/GridLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37300": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/GridLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37308": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/GridLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37316": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/GridLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/GridLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "37319": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/GridLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/GridLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37322": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/GridLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/GridLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37326": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/GridLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/GridLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37332": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/GridLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/GridLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37334": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/GridLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/GridLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37336": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/GridLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/GridLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37338": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/GridLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/GridLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "37342": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/GridLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/GridLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "37346": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/GridLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/GridLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "37350": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/GridLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/GridLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "37354": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/GridLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/GridLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37356": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/GridLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/GridLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37362": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/GridLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/GridLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37364": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/GridLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/GridLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37368": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/GridLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#domnode"
- }
- ]
- },
- "37369": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/GridLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#recyclenativeview"
- }
- ]
- },
- "37370": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/GridLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/GridLayout#viewcontroller"
- }
- ]
- },
- "37371": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/GridLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/GridLayout#nativeviewprotected"
- }
- ]
- },
- "37372": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/GridLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/GridLayout#parent"
- }
- ]
- },
- "37373": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/GridLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/GridLayout#iscollapsed"
- }
- ]
- },
- "37374": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/GridLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/GridLayout#id"
- }
- ]
- },
- "37375": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/GridLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/GridLayout#classname"
- }
- ]
- },
- "37376": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/GridLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/GridLayout#sharedtransitiontag"
- }
- ]
- },
- "37377": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/GridLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/GridLayout#sharedtransitionignore"
- }
- ]
- },
- "37378": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/GridLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#domid"
- }
- ]
- },
- "37379": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/GridLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#context"
- }
- ]
- },
- "37380": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/GridLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "37381": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/GridLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#cssstate"
- }
- ]
- },
- "37382": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/GridLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#stylescope"
- }
- ]
- },
- "37387": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/GridLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/GridLayout#suspendnativeupdatescount"
- }
- ]
- },
- "37388": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/GridLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#isstylescopehost"
- }
- ]
- },
- "37389": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/GridLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "37390": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/GridLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#left"
- }
- ]
- },
- "37391": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/GridLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#top"
- }
- ]
- },
- "37392": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveleft"
- }
- ]
- },
- "37393": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivetop"
- }
- ]
- },
- "37394": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/GridLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#dock"
- }
- ]
- },
- "37395": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/GridLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#row"
- }
- ]
- },
- "37396": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/GridLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#col"
- }
- ]
- },
- "37397": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/GridLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#column"
- }
- ]
- },
- "37398": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/GridLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#rowspan"
- }
- ]
- },
- "37399": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/GridLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#colspan"
- }
- ]
- },
- "37400": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/GridLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#columnspan"
- }
- ]
- },
- "37401": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/GridLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#order"
- }
- ]
- },
- "37402": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/GridLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#flexgrow"
- }
- ]
- },
- "37403": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/GridLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#flexshrink"
- }
- ]
- },
- "37404": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/GridLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#flexwrapbefore"
- }
- ]
- },
- "37405": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/GridLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#alignself"
- }
- ]
- },
- "37406": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#oldleft"
- }
- ]
- },
- "37407": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/GridLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#oldtop"
- }
- ]
- },
- "37408": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/GridLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#oldright"
- }
- ]
- },
- "37409": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/GridLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#oldbottom"
- }
- ]
- },
- "37410": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/GridLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "37411": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveminwidth"
- }
- ]
- },
- "37412": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveminheight"
- }
- ]
- },
- "37413": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivewidth"
- }
- ]
- },
- "37414": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveheight"
- }
- ]
- },
- "37415": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivemargintop"
- }
- ]
- },
- "37416": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivemarginright"
- }
- ]
- },
- "37417": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivemarginbottom"
- }
- ]
- },
- "37418": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivemarginleft"
- }
- ]
- },
- "37419": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivepaddingtop"
- }
- ]
- },
- "37420": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivepaddingright"
- }
- ]
- },
- "37421": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivepaddingbottom"
- }
- ]
- },
- "37422": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivepaddingleft"
- }
- ]
- },
- "37423": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectivebordertopwidth"
- }
- ]
- },
- "37424": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveborderrightwidth"
- }
- ]
- },
- "37425": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "37426": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/GridLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#effectiveborderleftwidth"
- }
- ]
- },
- "37427": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/GridLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#defaultpaddingtop"
- }
- ]
- },
- "37428": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/GridLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#defaultpaddingright"
- }
- ]
- },
- "37429": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/GridLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#defaultpaddingbottom"
- }
- ]
- },
- "37430": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/GridLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#defaultpaddingleft"
- }
- ]
- },
- "37431": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/GridLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/GridLayout#ispaddingrelative"
- }
- ]
- },
- "37433": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/GridLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/GridLayout#reusable"
- }
- ]
- },
- "37434": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/GridLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/GridLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "37438": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/GridLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/GridLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "37442": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/GridLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/GridLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "37444": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/GridLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/GridLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "37448": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/GridLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/GridLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37450": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/GridLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/GridLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "37454": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/GridLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/GridLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "37458": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/GridLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/GridLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "37462": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/GridLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/GridLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "37464": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/GridLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/GridLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37466": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/GridLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/GridLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37470": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/GridLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/GridLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37472": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/GridLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/GridLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37474": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/GridLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/GridLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37477": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/GridLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/GridLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37480": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/GridLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/GridLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "37486": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/GridLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/GridLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37488": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/GridLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/GridLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37490": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/GridLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/GridLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37493": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/GridLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/GridLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37496": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/GridLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/GridLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37500": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/GridLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/GridLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37503": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/GridLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/GridLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37507": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/GridLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/GridLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37511": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/GridLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/GridLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37514": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/GridLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/GridLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37516": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/GridLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/GridLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37519": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/GridLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/GridLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37522": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/GridLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/GridLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37525": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/GridLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/GridLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "37527": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/GridLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/GridLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37529": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/GridLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/GridLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37531": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/GridLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/GridLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37536": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/GridLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/GridLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37539": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/GridLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/GridLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37542": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/GridLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/GridLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37545": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/GridLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/GridLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "37548": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/GridLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/GridLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "37552": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/GridLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/GridLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37555": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/GridLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/GridLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "37559": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/GridLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/GridLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37562": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/GridLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/GridLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37565": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/GridLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/GridLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37567": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/GridLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/GridLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "37571": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/GridLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/GridLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37574": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/GridLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/GridLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37576": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/GridLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/GridLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37579": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/GridLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/GridLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "37582": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/GridLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/GridLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37586": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/GridLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/GridLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37594": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/GridLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/GridLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37598": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/GridLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/GridLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37603": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/GridLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/GridLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "37606": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/GridLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/GridLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "37611": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/GridLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/GridLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/GridLayout.md b/content/api/class/GridLayout.md
deleted file mode 100644
index 74895047..00000000
--- a/content/api/class/GridLayout.md
+++ /dev/null
@@ -1,288 +0,0 @@
----
-title: GridLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'GridLayout'
-layout: api
-seo:
- description: "Defines a rectangular layout area that consists of columns and rows."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/HtmlView#layoutchangedevent"
- }
- ]
- },
- "14143": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/HtmlView#showingmodallyevent"
- }
- ]
- },
- "14144": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/HtmlView#shownmodallyevent"
- }
- ]
- },
- "14145": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityblurevent"
- }
- ]
- },
- "14146": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityfocusevent"
- }
- ]
- },
- "14147": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityfocuschangedevent"
- }
- ]
- },
- "14148": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/HtmlView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/HtmlView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "14157": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/HtmlView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/HtmlView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14165": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/HtmlView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/HtmlView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "14171": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/HtmlView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/HtmlView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "14175": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#accessibilityperformescapeevent"
- }
- ]
- },
- "14176": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/HtmlView#loadedevent"
- }
- ]
- },
- "14177": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/HtmlView#unloadedevent"
- }
- ]
- },
- "14178": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/HtmlView#createdevent"
- }
- ]
- },
- "14179": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/HtmlView#disposenativeviewevent"
- }
- ]
- },
- "14180": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/HtmlView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/HtmlView#propertychangeevent"
- }
- ]
- },
- "14181": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/HtmlView#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14189": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/HtmlView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14197": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/HtmlView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14205": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/HtmlView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14213": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/HtmlView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14221": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/HtmlView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new HtmlView(): HtmlView",
- "url": "/api/class/HtmlView#constructor-new-htmlview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "HtmlView"
- }
- ]
- },
- "14223": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/HtmlView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/html-view/index.d.ts",
- "line": 13,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/HtmlView#android"
- }
- ]
- },
- "14224": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/HtmlView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [UITextView](https://developer.apple.com/documentation/uikit/uitextview) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/html-view/index.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [UITextView](https://developer.apple.com/documentation/uikit/uitextview) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/HtmlView#ios"
- }
- ]
- },
- "14225": {
- "name": "html",
- "type": "Property",
- "url": "/api/class/HtmlView#html",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets html string for the HtmlView."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "html: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/html-view/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets html string for the HtmlView."
- }
- ]
- },
- "url": "/api/class/HtmlView#html"
- }
- ]
- },
- "14226": {
- "name": "selectable",
- "type": "Property",
- "url": "/api/class/HtmlView#selectable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether HtmlView is selectable."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "selectable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/html-view/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether HtmlView is selectable."
- }
- ]
- },
- "url": "/api/class/HtmlView#selectable"
- }
- ]
- },
- "14227": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/HtmlView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/HtmlView#bindingcontext"
- }
- ]
- },
- "14228": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/HtmlView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#bordercolor"
- }
- ]
- },
- "14229": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/HtmlView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#bordertopcolor"
- }
- ]
- },
- "14230": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/HtmlView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderrightcolor"
- }
- ]
- },
- "14231": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/HtmlView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderbottomcolor"
- }
- ]
- },
- "14232": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/HtmlView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderleftcolor"
- }
- ]
- },
- "14233": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderwidth"
- }
- ]
- },
- "14234": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#bordertopwidth"
- }
- ]
- },
- "14235": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderrightwidth"
- }
- ]
- },
- "14236": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderbottomwidth"
- }
- ]
- },
- "14237": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderleftwidth"
- }
- ]
- },
- "14238": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/HtmlView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderradius"
- }
- ]
- },
- "14239": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/HtmlView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#bordertopleftradius"
- }
- ]
- },
- "14240": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/HtmlView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#bordertoprightradius"
- }
- ]
- },
- "14241": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/HtmlView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderbottomrightradius"
- }
- ]
- },
- "14242": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/HtmlView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#borderbottomleftradius"
- }
- ]
- },
- "14243": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/HtmlView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#color"
- }
- ]
- },
- "14244": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/HtmlView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessible"
- }
- ]
- },
- "14245": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityhidden"
- }
- ]
- },
- "14246": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityidentifier"
- }
- ]
- },
- "14247": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityrole"
- }
- ]
- },
- "14248": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilitystate"
- }
- ]
- },
- "14249": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilitylabel"
- }
- ]
- },
- "14250": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityvalue"
- }
- ]
- },
- "14251": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilityhint"
- }
- ]
- },
- "14252": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#accessibilityliveregion"
- }
- ]
- },
- "14253": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilitylanguage"
- }
- ]
- },
- "14254": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/HtmlView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/HtmlView#accessibilitymediasession"
- }
- ]
- },
- "14255": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/HtmlView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/HtmlView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "14256": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/HtmlView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/HtmlView#iosaccessibilityminfontscale"
- }
- ]
- },
- "14257": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/HtmlView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/HtmlView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "14258": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/HtmlView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/HtmlView#androidcontentdescriptionupdated"
- }
- ]
- },
- "14259": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/HtmlView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#automationtext"
- }
- ]
- },
- "14260": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/HtmlView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/HtmlView#androidelevation"
- }
- ]
- },
- "14261": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/HtmlView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/HtmlView#androiddynamicelevationoffset"
- }
- ]
- },
- "14262": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/HtmlView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/HtmlView#background"
- }
- ]
- },
- "14263": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/HtmlView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#backgroundcolor"
- }
- ]
- },
- "14264": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/HtmlView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#backgroundimage"
- }
- ]
- },
- "14265": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/HtmlView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#boxshadow"
- }
- ]
- },
- "14266": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/HtmlView#minwidth"
- }
- ]
- },
- "14267": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/HtmlView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/HtmlView#minheight"
- }
- ]
- },
- "14268": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/HtmlView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#width"
- }
- ]
- },
- "14269": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/HtmlView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#height"
- }
- ]
- },
- "14270": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/HtmlView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/HtmlView#margin"
- }
- ]
- },
- "14271": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/HtmlView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/HtmlView#marginleft"
- }
- ]
- },
- "14272": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/HtmlView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/HtmlView#margintop"
- }
- ]
- },
- "14273": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/HtmlView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/HtmlView#marginright"
- }
- ]
- },
- "14274": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/HtmlView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/HtmlView#marginbottom"
- }
- ]
- },
- "14275": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/HtmlView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/HtmlView#horizontalalignment"
- }
- ]
- },
- "14276": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/HtmlView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/HtmlView#verticalalignment"
- }
- ]
- },
- "14277": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/HtmlView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#visibility"
- }
- ]
- },
- "14278": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/HtmlView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/HtmlView#opacity"
- }
- ]
- },
- "14279": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/HtmlView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/HtmlView#rotate"
- }
- ]
- },
- "14280": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/HtmlView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/HtmlView#rotatex"
- }
- ]
- },
- "14281": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/HtmlView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/HtmlView#rotatey"
- }
- ]
- },
- "14282": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/HtmlView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/HtmlView#perspective"
- }
- ]
- },
- "14283": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/HtmlView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/HtmlView#translatex"
- }
- ]
- },
- "14284": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/HtmlView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/HtmlView#translatey"
- }
- ]
- },
- "14285": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/HtmlView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#scalex"
- }
- ]
- },
- "14286": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/HtmlView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#scaley"
- }
- ]
- },
- "14287": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/HtmlView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#originx"
- }
- ]
- },
- "14288": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/HtmlView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#originy"
- }
- ]
- },
- "14289": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/HtmlView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#isenabled"
- }
- ]
- },
- "14290": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/HtmlView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/HtmlView#isuserinteractionenabled"
- }
- ]
- },
- "14291": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/HtmlView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/HtmlView#iosoverflowsafearea"
- }
- ]
- },
- "14292": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/HtmlView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/HtmlView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "14293": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/HtmlView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/HtmlView#iosignoresafearea"
- }
- ]
- },
- "14294": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/HtmlView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/HtmlView#islayoutvalid"
- }
- ]
- },
- "14295": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/HtmlView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/HtmlView#csstype"
- }
- ]
- },
- "14296": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/HtmlView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#cssclasses"
- }
- ]
- },
- "14297": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/HtmlView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#csspseudoclasses"
- }
- ]
- },
- "14298": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/HtmlView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/HtmlView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14302": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/HtmlView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/HtmlView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14309": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/HtmlView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/HtmlView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "14311": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/HtmlView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/HtmlView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "14313": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/HtmlView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/HtmlView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "14315": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/HtmlView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/HtmlView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14319": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/HtmlView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/HtmlView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14325": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/HtmlView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/HtmlView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14329": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/HtmlView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/HtmlView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14335": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/HtmlView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/HtmlView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "14337": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/HtmlView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/HtmlView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "14340": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/HtmlView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/HtmlView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "14348": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/HtmlView#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/HtmlView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/HtmlView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/HtmlView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/HtmlView#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/HtmlView#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "14391": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/HtmlView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/HtmlView#modal"
- }
- ]
- },
- "14392": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/HtmlView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/HtmlView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "14395": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/HtmlView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/HtmlView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "14398": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/HtmlView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/HtmlView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "14405": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/HtmlView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/HtmlView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "14407": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/HtmlView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/HtmlView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "14409": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/HtmlView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/HtmlView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "14412": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/HtmlView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/HtmlView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "14414": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/HtmlView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/HtmlView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "14426": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/HtmlView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/HtmlView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "14428": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/HtmlView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/HtmlView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "14430": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/HtmlView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/HtmlView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "14432": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/HtmlView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/HtmlView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14438": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/HtmlView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/HtmlView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14440": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/HtmlView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/HtmlView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "14442": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/HtmlView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/HtmlView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14444": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/HtmlView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/HtmlView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14450": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/HtmlView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/HtmlView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14453": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/HtmlView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/HtmlView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14456": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/HtmlView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/HtmlView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14525": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/HtmlView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/HtmlView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "14531": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/HtmlView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/HtmlView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14536": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/HtmlView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/HtmlView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14538": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/HtmlView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/HtmlView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14540": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/HtmlView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/HtmlView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "14543": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/HtmlView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/HtmlView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "14546": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/HtmlView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/HtmlView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "14550": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/HtmlView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#testid"
- }
- ]
- },
- "14551": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/HtmlView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#touchanimation"
- }
- ]
- },
- "14552": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/HtmlView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#ignoretouchanimation"
- }
- ]
- },
- "14553": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/HtmlView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#touchdelay"
- }
- ]
- },
- "14554": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/HtmlView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#closemodalcallback"
- }
- ]
- },
- "14555": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/HtmlView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/HtmlView#transitionid"
- }
- ]
- },
- "14556": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/HtmlView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#islayoutvalid"
- }
- ]
- },
- "14557": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/HtmlView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/HtmlView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14559": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/HtmlView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/HtmlView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14562": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/HtmlView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14570": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/HtmlView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14578": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/HtmlView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14586": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/HtmlView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/HtmlView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "14589": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/HtmlView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/HtmlView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14592": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/HtmlView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/HtmlView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14596": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/HtmlView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/HtmlView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14602": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/HtmlView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/HtmlView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14604": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/HtmlView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/HtmlView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14606": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/HtmlView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/HtmlView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14608": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/HtmlView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/HtmlView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "14612": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/HtmlView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/HtmlView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "14616": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/HtmlView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/HtmlView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "14620": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/HtmlView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/HtmlView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "14624": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/HtmlView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/HtmlView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14626": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/HtmlView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/HtmlView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14632": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/HtmlView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/HtmlView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14634": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/HtmlView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/HtmlView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14638": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/HtmlView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#domnode"
- }
- ]
- },
- "14639": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/HtmlView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#recyclenativeview"
- }
- ]
- },
- "14640": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/HtmlView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/HtmlView#viewcontroller"
- }
- ]
- },
- "14641": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/HtmlView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/HtmlView#nativeviewprotected"
- }
- ]
- },
- "14642": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/HtmlView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/HtmlView#parent"
- }
- ]
- },
- "14643": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/HtmlView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/HtmlView#iscollapsed"
- }
- ]
- },
- "14644": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/HtmlView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/HtmlView#id"
- }
- ]
- },
- "14645": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/HtmlView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/HtmlView#classname"
- }
- ]
- },
- "14646": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/HtmlView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/HtmlView#sharedtransitiontag"
- }
- ]
- },
- "14647": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/HtmlView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/HtmlView#sharedtransitionignore"
- }
- ]
- },
- "14648": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/HtmlView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#domid"
- }
- ]
- },
- "14649": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/HtmlView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#context"
- }
- ]
- },
- "14650": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/HtmlView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#isaddedtonativevisualtree"
- }
- ]
- },
- "14651": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/HtmlView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#cssstate"
- }
- ]
- },
- "14652": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/HtmlView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#stylescope"
- }
- ]
- },
- "14657": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/HtmlView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/HtmlView#suspendnativeupdatescount"
- }
- ]
- },
- "14658": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/HtmlView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#isstylescopehost"
- }
- ]
- },
- "14659": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/HtmlView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "14660": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/HtmlView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#left"
- }
- ]
- },
- "14661": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/HtmlView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#top"
- }
- ]
- },
- "14662": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveleft"
- }
- ]
- },
- "14663": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivetop"
- }
- ]
- },
- "14664": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/HtmlView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#dock"
- }
- ]
- },
- "14665": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/HtmlView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#row"
- }
- ]
- },
- "14666": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/HtmlView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#col"
- }
- ]
- },
- "14667": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/HtmlView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#column"
- }
- ]
- },
- "14668": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/HtmlView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#rowspan"
- }
- ]
- },
- "14669": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/HtmlView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#colspan"
- }
- ]
- },
- "14670": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/HtmlView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#columnspan"
- }
- ]
- },
- "14671": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/HtmlView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#order"
- }
- ]
- },
- "14672": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/HtmlView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#flexgrow"
- }
- ]
- },
- "14673": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/HtmlView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#flexshrink"
- }
- ]
- },
- "14674": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/HtmlView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#flexwrapbefore"
- }
- ]
- },
- "14675": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/HtmlView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#alignself"
- }
- ]
- },
- "14676": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/HtmlView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#oldleft"
- }
- ]
- },
- "14677": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/HtmlView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#oldtop"
- }
- ]
- },
- "14678": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/HtmlView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#oldright"
- }
- ]
- },
- "14679": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/HtmlView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#oldbottom"
- }
- ]
- },
- "14680": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/HtmlView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "14681": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveminwidth"
- }
- ]
- },
- "14682": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveminheight"
- }
- ]
- },
- "14683": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivewidth"
- }
- ]
- },
- "14684": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveheight"
- }
- ]
- },
- "14685": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivemargintop"
- }
- ]
- },
- "14686": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivemarginright"
- }
- ]
- },
- "14687": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivemarginbottom"
- }
- ]
- },
- "14688": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivemarginleft"
- }
- ]
- },
- "14689": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivepaddingtop"
- }
- ]
- },
- "14690": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivepaddingright"
- }
- ]
- },
- "14691": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivepaddingbottom"
- }
- ]
- },
- "14692": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivepaddingleft"
- }
- ]
- },
- "14693": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectivebordertopwidth"
- }
- ]
- },
- "14694": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveborderrightwidth"
- }
- ]
- },
- "14695": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveborderbottomwidth"
- }
- ]
- },
- "14696": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/HtmlView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#effectiveborderleftwidth"
- }
- ]
- },
- "14697": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/HtmlView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#defaultpaddingtop"
- }
- ]
- },
- "14698": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/HtmlView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#defaultpaddingright"
- }
- ]
- },
- "14699": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/HtmlView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#defaultpaddingbottom"
- }
- ]
- },
- "14700": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/HtmlView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#defaultpaddingleft"
- }
- ]
- },
- "14701": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/HtmlView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/HtmlView#ispaddingrelative"
- }
- ]
- },
- "14703": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/HtmlView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/HtmlView#reusable"
- }
- ]
- },
- "14704": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/HtmlView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/HtmlView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "14708": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/HtmlView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/HtmlView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "14712": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/HtmlView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/HtmlView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "14714": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/HtmlView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/HtmlView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "14718": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/HtmlView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/HtmlView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "14720": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/HtmlView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/HtmlView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "14724": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/HtmlView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/HtmlView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "14728": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/HtmlView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/HtmlView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "14732": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/HtmlView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/HtmlView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "14734": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/HtmlView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/HtmlView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14736": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/HtmlView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/HtmlView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14740": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/HtmlView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/HtmlView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14742": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/HtmlView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/HtmlView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14744": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/HtmlView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/HtmlView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14747": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/HtmlView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/HtmlView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14750": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/HtmlView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/HtmlView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "14756": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/HtmlView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/HtmlView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14758": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/HtmlView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/HtmlView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14760": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/HtmlView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/HtmlView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14763": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/HtmlView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/HtmlView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14766": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/HtmlView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/HtmlView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14770": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/HtmlView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/HtmlView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14773": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/HtmlView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/HtmlView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14777": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/HtmlView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/HtmlView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14781": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/HtmlView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/HtmlView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14784": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/HtmlView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/HtmlView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "14786": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/HtmlView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/HtmlView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14789": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/HtmlView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/HtmlView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14792": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/HtmlView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/HtmlView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14795": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/HtmlView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/HtmlView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "14797": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/HtmlView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/HtmlView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14799": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/HtmlView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/HtmlView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14801": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/HtmlView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/HtmlView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14806": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/HtmlView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/HtmlView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14809": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/HtmlView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/HtmlView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14812": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/HtmlView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/HtmlView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14815": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/HtmlView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/HtmlView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "14818": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/HtmlView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/HtmlView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "14822": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/HtmlView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/HtmlView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14825": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/HtmlView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/HtmlView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "14829": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/HtmlView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/HtmlView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14832": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/HtmlView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/HtmlView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14835": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/HtmlView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/HtmlView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14837": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/HtmlView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/HtmlView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "14841": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/HtmlView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/HtmlView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14844": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/HtmlView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/HtmlView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14846": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/HtmlView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/HtmlView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "14849": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/HtmlView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/HtmlView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "14852": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/HtmlView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/HtmlView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14856": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/HtmlView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/HtmlView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14864": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/HtmlView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/HtmlView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14868": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/HtmlView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/HtmlView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14873": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/HtmlView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/HtmlView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "14876": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/HtmlView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/HtmlView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "14881": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/HtmlView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/HtmlView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/HtmlView.md b/content/api/class/HtmlView.md
deleted file mode 100644
index b435f445..00000000
--- a/content/api/class/HtmlView.md
+++ /dev/null
@@ -1,106 +0,0 @@
----
-title: HtmlView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'HtmlView'
-layout: api
-seo:
- description: "Represents a view with html content. Use this component instead WebView when you want to show just static HTML content.\n[iOS support](https://developer.apple.com/documentation/foundation/nsattributedstring/1524613-initwithdata)\n[android support](http://developer.android.com/reference/android/text/Html.html)"
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Image#layoutchangedevent"
- }
- ]
- },
- "14886": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Image#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Image#showingmodallyevent"
- }
- ]
- },
- "14887": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Image#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Image#shownmodallyevent"
- }
- ]
- },
- "14888": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Image#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Image#accessibilityblurevent"
- }
- ]
- },
- "14889": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Image#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Image#accessibilityfocusevent"
- }
- ]
- },
- "14890": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Image#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Image#accessibilityfocuschangedevent"
- }
- ]
- },
- "14891": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Image#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Image#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "14900": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Image#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Image#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14908": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Image#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Image#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "14914": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Image#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Image#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "14918": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Image#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#accessibilityperformescapeevent"
- }
- ]
- },
- "14919": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Image#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Image#loadedevent"
- }
- ]
- },
- "14920": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Image#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Image#unloadedevent"
- }
- ]
- },
- "14921": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Image#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Image#createdevent"
- }
- ]
- },
- "14922": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Image#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Image#disposenativeviewevent"
- }
- ]
- },
- "14923": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Image#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Image#propertychangeevent"
- }
- ]
- },
- "14924": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Image#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14932": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Image#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14940": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Image#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14948": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Image#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14956": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Image#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14964": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Image#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Image(): Image",
- "url": "/api/class/Image#constructor-new-image",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "Image"
- }
- ]
- },
- "14966": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Image#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ImageView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ImageView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/Image#android"
- }
- ]
- },
- "14967": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Image#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIImageView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImageView_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIImageView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImageView_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/Image#ios"
- }
- ]
- },
- "14968": {
- "name": "imageSource",
- "type": "Property",
- "url": "/api/class/Image#imagesource",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the image source of the image."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "imageSource: ImageSource",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the image source of the image."
- }
- ]
- },
- "url": "/api/class/Image#imagesource"
- }
- ]
- },
- "14969": {
- "name": "src",
- "type": "Property",
- "url": "/api/class/Image#src",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the source of the Image. This can be either an URL string or a native image instance."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "src: string | ImageSource | ImageAsset",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the source of the Image. This can be either an URL string or a native image instance."
- }
- ]
- },
- "url": "/api/class/Image#src"
- }
- ]
- },
- "14970": {
- "name": "isLoading",
- "type": "Property",
- "url": "/api/class/Image#isloading",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating if the image is currently loading."
- }
- ]
- },
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "isLoading: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 36,
- "character": 10
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating if the image is currently loading."
- }
- ]
- },
- "url": "/api/class/Image#isloading"
- }
- ]
- },
- "14971": {
- "name": "stretch",
- "type": "Property",
- "url": "/api/class/Image#stretch",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the image stretch mode."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "stretch: ImageStretchType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the image stretch mode."
- }
- ]
- },
- "url": "/api/class/Image#stretch"
- }
- ]
- },
- "14972": {
- "name": "loadMode",
- "type": "Property",
- "url": "/api/class/Image#loadmode",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the loading strategy for images on the local file system:\n- **sync** - blocks the UI if necessary to display immediately, good for small icons.\n- **async** *(default)* - will load in the background, may appear with short delay, good for large images.\nWhen loading images from web they are always loaded **async** no matter of loadMode value."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "loadMode: "sync" | "async"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the loading strategy for images on the local file system:\n- **sync** - blocks the UI if necessary to display immediately, good for small icons.\n- **async** *(default)* - will load in the background, may appear with short delay, good for large images.\nWhen loading images from web they are always loaded **async** no matter of loadMode value."
- }
- ]
- },
- "url": "/api/class/Image#loadmode"
- }
- ]
- },
- "14973": {
- "name": "tintColor",
- "type": "Property",
- "url": "/api/class/Image#tintcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A color used to tint template images."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "tintColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A color used to tint template images."
- }
- ]
- },
- "url": "/api/class/Image#tintcolor"
- }
- ]
- },
- "14974": {
- "name": "decodeHeight",
- "type": "Property",
- "url": "/api/class/Image#decodeheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired decode height of the image.\nThis property is Android specific."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "decodeHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 60,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired decode height of the image.\nThis property is Android specific."
- }
- ]
- },
- "url": "/api/class/Image#decodeheight"
- }
- ]
- },
- "14975": {
- "name": "decodeWidth",
- "type": "Property",
- "url": "/api/class/Image#decodewidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired decode width of the image.\nThis property is Android specific."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "decodeWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image/index.d.ts",
- "line": 66,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired decode width of the image.\nThis property is Android specific."
- }
- ]
- },
- "url": "/api/class/Image#decodewidth"
- }
- ]
- },
- "14976": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Image#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Image#bindingcontext"
- }
- ]
- },
- "14977": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Image#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Image#bordercolor"
- }
- ]
- },
- "14978": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Image#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Image#bordertopcolor"
- }
- ]
- },
- "14979": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Image#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderrightcolor"
- }
- ]
- },
- "14980": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Image#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderbottomcolor"
- }
- ]
- },
- "14981": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Image#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderleftcolor"
- }
- ]
- },
- "14982": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Image#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderwidth"
- }
- ]
- },
- "14983": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Image#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Image#bordertopwidth"
- }
- ]
- },
- "14984": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Image#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderrightwidth"
- }
- ]
- },
- "14985": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Image#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderbottomwidth"
- }
- ]
- },
- "14986": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Image#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderleftwidth"
- }
- ]
- },
- "14987": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Image#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderradius"
- }
- ]
- },
- "14988": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Image#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Image#bordertopleftradius"
- }
- ]
- },
- "14989": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Image#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Image#bordertoprightradius"
- }
- ]
- },
- "14990": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Image#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderbottomrightradius"
- }
- ]
- },
- "14991": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Image#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Image#borderbottomleftradius"
- }
- ]
- },
- "14992": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Image#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Image#color"
- }
- ]
- },
- "14993": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Image#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Image#accessible"
- }
- ]
- },
- "14994": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Image#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Image#accessibilityhidden"
- }
- ]
- },
- "14995": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Image#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Image#accessibilityidentifier"
- }
- ]
- },
- "14996": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Image#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Image#accessibilityrole"
- }
- ]
- },
- "14997": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Image#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Image#accessibilitystate"
- }
- ]
- },
- "14998": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Image#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Image#accessibilitylabel"
- }
- ]
- },
- "14999": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Image#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Image#accessibilityvalue"
- }
- ]
- },
- "15000": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Image#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Image#accessibilityhint"
- }
- ]
- },
- "15001": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Image#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#accessibilityliveregion"
- }
- ]
- },
- "15002": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Image#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Image#accessibilitylanguage"
- }
- ]
- },
- "15003": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Image#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Image#accessibilitymediasession"
- }
- ]
- },
- "15004": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Image#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Image#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "15005": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Image#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Image#iosaccessibilityminfontscale"
- }
- ]
- },
- "15006": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Image#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Image#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "15007": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Image#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Image#androidcontentdescriptionupdated"
- }
- ]
- },
- "15008": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Image#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#automationtext"
- }
- ]
- },
- "15009": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Image#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Image#androidelevation"
- }
- ]
- },
- "15010": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Image#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Image#androiddynamicelevationoffset"
- }
- ]
- },
- "15011": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Image#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Image#background"
- }
- ]
- },
- "15012": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Image#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Image#backgroundcolor"
- }
- ]
- },
- "15013": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Image#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Image#backgroundimage"
- }
- ]
- },
- "15014": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Image#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Image#boxshadow"
- }
- ]
- },
- "15015": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Image#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Image#minwidth"
- }
- ]
- },
- "15016": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Image#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Image#minheight"
- }
- ]
- },
- "15017": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Image#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Image#width"
- }
- ]
- },
- "15018": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Image#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Image#height"
- }
- ]
- },
- "15019": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Image#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Image#margin"
- }
- ]
- },
- "15020": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Image#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Image#marginleft"
- }
- ]
- },
- "15021": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Image#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Image#margintop"
- }
- ]
- },
- "15022": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Image#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Image#marginright"
- }
- ]
- },
- "15023": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Image#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Image#marginbottom"
- }
- ]
- },
- "15024": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Image#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Image#horizontalalignment"
- }
- ]
- },
- "15025": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Image#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Image#verticalalignment"
- }
- ]
- },
- "15026": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Image#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Image#visibility"
- }
- ]
- },
- "15027": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Image#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Image#opacity"
- }
- ]
- },
- "15028": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Image#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Image#rotate"
- }
- ]
- },
- "15029": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Image#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Image#rotatex"
- }
- ]
- },
- "15030": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Image#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Image#rotatey"
- }
- ]
- },
- "15031": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Image#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Image#perspective"
- }
- ]
- },
- "15032": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Image#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Image#translatex"
- }
- ]
- },
- "15033": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Image#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Image#translatey"
- }
- ]
- },
- "15034": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Image#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Image#scalex"
- }
- ]
- },
- "15035": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Image#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Image#scaley"
- }
- ]
- },
- "15036": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Image#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Image#originx"
- }
- ]
- },
- "15037": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Image#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Image#originy"
- }
- ]
- },
- "15038": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Image#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Image#isenabled"
- }
- ]
- },
- "15039": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Image#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Image#isuserinteractionenabled"
- }
- ]
- },
- "15040": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Image#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Image#iosoverflowsafearea"
- }
- ]
- },
- "15041": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Image#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Image#iosoverflowsafeareaenabled"
- }
- ]
- },
- "15042": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Image#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Image#iosignoresafearea"
- }
- ]
- },
- "15043": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Image#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Image#islayoutvalid"
- }
- ]
- },
- "15044": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Image#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Image#csstype"
- }
- ]
- },
- "15045": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Image#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#cssclasses"
- }
- ]
- },
- "15046": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Image#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#csspseudoclasses"
- }
- ]
- },
- "15047": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Image#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Image#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15051": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Image#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Image#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15058": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Image#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Image#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "15060": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Image#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Image#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "15062": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Image#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Image#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "15064": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Image#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Image#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15068": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Image#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Image#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15074": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Image#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Image#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15078": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Image#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Image#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15084": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Image#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Image#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "15086": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Image#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Image#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "15089": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Image#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Image#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "15097": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Image#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Image#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Image#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Image#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Image#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/Image#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/Image#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "15140": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Image#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Image#modal"
- }
- ]
- },
- "15141": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Image#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Image#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "15144": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Image#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Image#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "15147": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Image#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Image#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "15154": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Image#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Image#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "15156": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Image#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Image#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "15158": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Image#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Image#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "15161": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Image#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Image#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "15163": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Image#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Image#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "15175": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Image#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Image#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "15177": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Image#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Image#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "15179": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Image#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Image#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "15181": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Image#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Image#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15187": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Image#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Image#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15189": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Image#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Image#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "15191": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Image#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Image#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15193": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Image#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Image#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15199": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Image#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Image#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15202": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Image#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Image#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15205": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Image#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Image#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15274": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Image#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Image#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "15280": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Image#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Image#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15285": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Image#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Image#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15287": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Image#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Image#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15289": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Image#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Image#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "15292": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Image#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Image#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "15295": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Image#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Image#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "15299": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Image#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#testid"
- }
- ]
- },
- "15300": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Image#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#touchanimation"
- }
- ]
- },
- "15301": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Image#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#ignoretouchanimation"
- }
- ]
- },
- "15302": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Image#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#touchdelay"
- }
- ]
- },
- "15303": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Image#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#closemodalcallback"
- }
- ]
- },
- "15304": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Image#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Image#transitionid"
- }
- ]
- },
- "15305": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Image#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#islayoutvalid"
- }
- ]
- },
- "15306": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Image#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Image#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15308": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Image#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Image#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15311": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Image#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15319": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Image#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15327": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Image#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15335": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Image#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Image#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "15338": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Image#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Image#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15341": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Image#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Image#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15345": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Image#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Image#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15351": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Image#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Image#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15353": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Image#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Image#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15355": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Image#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Image#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15357": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Image#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Image#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "15361": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Image#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Image#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "15365": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Image#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Image#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "15369": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Image#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Image#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "15373": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Image#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Image#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15375": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Image#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Image#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15381": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Image#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Image#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15383": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Image#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Image#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15387": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Image#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#domnode"
- }
- ]
- },
- "15388": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Image#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#recyclenativeview"
- }
- ]
- },
- "15389": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Image#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Image#viewcontroller"
- }
- ]
- },
- "15390": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Image#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Image#nativeviewprotected"
- }
- ]
- },
- "15391": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Image#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Image#parent"
- }
- ]
- },
- "15392": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Image#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Image#iscollapsed"
- }
- ]
- },
- "15393": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Image#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Image#id"
- }
- ]
- },
- "15394": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Image#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Image#classname"
- }
- ]
- },
- "15395": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Image#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Image#sharedtransitiontag"
- }
- ]
- },
- "15396": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Image#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Image#sharedtransitionignore"
- }
- ]
- },
- "15397": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Image#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#domid"
- }
- ]
- },
- "15398": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Image#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#context"
- }
- ]
- },
- "15399": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Image#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#isaddedtonativevisualtree"
- }
- ]
- },
- "15400": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Image#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#cssstate"
- }
- ]
- },
- "15401": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Image#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#stylescope"
- }
- ]
- },
- "15406": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Image#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Image#suspendnativeupdatescount"
- }
- ]
- },
- "15407": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Image#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#isstylescopehost"
- }
- ]
- },
- "15408": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Image#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "15409": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Image#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#left"
- }
- ]
- },
- "15410": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Image#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#top"
- }
- ]
- },
- "15411": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Image#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveleft"
- }
- ]
- },
- "15412": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Image#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivetop"
- }
- ]
- },
- "15413": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Image#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#dock"
- }
- ]
- },
- "15414": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Image#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#row"
- }
- ]
- },
- "15415": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Image#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#col"
- }
- ]
- },
- "15416": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Image#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#column"
- }
- ]
- },
- "15417": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Image#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#rowspan"
- }
- ]
- },
- "15418": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Image#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#colspan"
- }
- ]
- },
- "15419": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Image#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#columnspan"
- }
- ]
- },
- "15420": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Image#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#order"
- }
- ]
- },
- "15421": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Image#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#flexgrow"
- }
- ]
- },
- "15422": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Image#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#flexshrink"
- }
- ]
- },
- "15423": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Image#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#flexwrapbefore"
- }
- ]
- },
- "15424": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Image#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#alignself"
- }
- ]
- },
- "15425": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Image#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#oldleft"
- }
- ]
- },
- "15426": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Image#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#oldtop"
- }
- ]
- },
- "15427": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Image#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#oldright"
- }
- ]
- },
- "15428": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Image#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#oldbottom"
- }
- ]
- },
- "15429": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Image#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#ignoreflexminwidthheightreset"
- }
- ]
- },
- "15430": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Image#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveminwidth"
- }
- ]
- },
- "15431": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Image#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveminheight"
- }
- ]
- },
- "15432": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Image#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivewidth"
- }
- ]
- },
- "15433": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Image#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveheight"
- }
- ]
- },
- "15434": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Image#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivemargintop"
- }
- ]
- },
- "15435": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Image#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivemarginright"
- }
- ]
- },
- "15436": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Image#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivemarginbottom"
- }
- ]
- },
- "15437": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Image#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivemarginleft"
- }
- ]
- },
- "15438": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Image#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivepaddingtop"
- }
- ]
- },
- "15439": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Image#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivepaddingright"
- }
- ]
- },
- "15440": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Image#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivepaddingbottom"
- }
- ]
- },
- "15441": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Image#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivepaddingleft"
- }
- ]
- },
- "15442": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Image#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectivebordertopwidth"
- }
- ]
- },
- "15443": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Image#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveborderrightwidth"
- }
- ]
- },
- "15444": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Image#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveborderbottomwidth"
- }
- ]
- },
- "15445": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Image#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#effectiveborderleftwidth"
- }
- ]
- },
- "15446": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Image#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#defaultpaddingtop"
- }
- ]
- },
- "15447": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Image#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#defaultpaddingright"
- }
- ]
- },
- "15448": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Image#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#defaultpaddingbottom"
- }
- ]
- },
- "15449": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Image#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#defaultpaddingleft"
- }
- ]
- },
- "15450": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Image#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Image#ispaddingrelative"
- }
- ]
- },
- "15452": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Image#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Image#reusable"
- }
- ]
- },
- "15453": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Image#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Image#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "15457": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Image#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Image#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "15461": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Image#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Image#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "15463": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Image#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Image#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "15467": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Image#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Image#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "15469": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Image#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Image#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "15473": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Image#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Image#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "15477": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Image#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Image#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "15481": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Image#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Image#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "15483": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Image#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Image#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15485": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Image#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Image#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15489": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Image#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Image#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15491": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Image#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Image#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15493": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Image#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Image#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15496": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Image#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Image#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15499": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Image#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Image#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "15505": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Image#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Image#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15507": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Image#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Image#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15509": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Image#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Image#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15512": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Image#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Image#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15515": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Image#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Image#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15519": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Image#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Image#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15522": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Image#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Image#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15526": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Image#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Image#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15530": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Image#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Image#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15533": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Image#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Image#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "15535": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Image#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Image#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15538": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Image#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Image#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15541": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Image#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Image#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15544": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Image#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Image#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "15546": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Image#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Image#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15548": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Image#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Image#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15550": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Image#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Image#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15555": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Image#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Image#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15558": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Image#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Image#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15561": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Image#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Image#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15564": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Image#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Image#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "15567": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Image#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Image#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "15571": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Image#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Image#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15574": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Image#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Image#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "15578": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Image#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Image#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15581": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Image#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Image#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15584": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Image#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Image#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15586": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Image#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Image#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "15590": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Image#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Image#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15593": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Image#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Image#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15595": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Image#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Image#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15598": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Image#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Image#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "15601": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Image#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Image#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15605": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Image#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Image#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15613": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Image#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Image#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15617": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Image#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Image#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15622": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Image#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Image#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "15625": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Image#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Image#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "15630": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Image#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Image#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Image.md b/content/api/class/Image.md
deleted file mode 100644
index d753e399..00000000
--- a/content/api/class/Image.md
+++ /dev/null
@@ -1,190 +0,0 @@
----
-title: Image
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Image'
-layout: api
-seo:
- description: "Represents a class that provides functionality for loading and streching images."
----
-
-
-
-
-
-
-propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ImageAsset#propertychangeevent"
- }
- ]
- },
- "2059": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ImageAsset#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2067": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ImageAsset#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2075": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ImageAsset#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2083": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ImageAsset#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2091": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ImageAsset#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2099": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ImageAsset#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ImageAsset(asset: any): ImageAsset",
- "url": "/api/class/ImageAsset#constructor-new-imageasset",
- "sources": [
- {
- "fileName": "@nativescript/core/image-asset/index.d.ts",
- "line": 4,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "asset",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "ImageAsset"
- }
- ]
- },
- "2102": {
- "name": "getImageAsync",
- "type": "Method",
- "url": "/api/class/ImageAsset#getimageasync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getImageAsync(callback: (image: any, error: any) => void): any",
- "url": "/api/class/ImageAsset#getimageasync-getimageasync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-asset/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(image: any, error: any) => void",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "2109": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ImageAsset#ios",
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/image-asset/index.d.ts",
- "line": 6,
- "character": 1
- }
- ],
- "url": "/api/class/ImageAsset#ios"
- }
- ]
- },
- "2110": {
- "name": "nativeImage",
- "type": "Property",
- "url": "/api/class/ImageAsset#nativeimage",
- "flags": {},
- "signatures": [
- {
- "code": "nativeImage: any",
- "sources": [
- {
- "fileName": "@nativescript/core/image-asset/index.d.ts",
- "line": 7,
- "character": 1
- }
- ],
- "url": "/api/class/ImageAsset#nativeimage"
- }
- ]
- },
- "2111": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ImageAsset#android",
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/image-asset/index.d.ts",
- "line": 8,
- "character": 1
- }
- ],
- "url": "/api/class/ImageAsset#android"
- }
- ]
- },
- "2112": {
- "name": "options",
- "type": "Property",
- "url": "/api/class/ImageAsset#options",
- "flags": {},
- "signatures": [
- {
- "code": "options: ImageAssetOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/image-asset/index.d.ts",
- "line": 9,
- "character": 1
- }
- ],
- "url": "/api/class/ImageAsset#options"
- }
- ]
- },
- "2114": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ImageAsset#get",
- "flags": {},
- "inheritedFrom": {
- "name": "get",
- "url": "/api/class/Observable#get",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ImageAsset#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "get",
- "url": "/api/class/Observable#get",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "2117": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ImageAsset#set",
- "flags": {},
- "inheritedFrom": {
- "name": "set",
- "url": "/api/class/Observable#set",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ImageAsset#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "set",
- "url": "/api/class/Observable#set",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2121": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ImageAsset#setproperty",
- "flags": {},
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ImageAsset#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2125": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ImageAsset#on",
- "flags": {},
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2133": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ImageAsset#once",
- "flags": {},
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2141": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ImageAsset#off",
- "flags": {},
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2149": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ImageAsset#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2157": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ImageAsset#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageAsset#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2165": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ImageAsset#notify",
- "flags": {},
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ImageAsset#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2169": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ImageAsset#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ImageAsset#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2174": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ImageAsset#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ImageAsset#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2177": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ImageAsset#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ImageAsset#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "2182": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ImageAsset#emit",
- "flags": {},
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ImageAsset#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ImageAsset.md b/content/api/class/ImageAsset.md
deleted file mode 100644
index 127af529..00000000
--- a/content/api/class/ImageAsset.md
+++ /dev/null
@@ -1,122 +0,0 @@
----
-title: ImageAsset
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ImageAsset'
-layout: api
-seo:
- description: "Observable is used when you want to be notified when a change occurs. Use on/off methods to add/remove listener.\nPlease note that should you be using the `new Observable({})` constructor, it is **obsolete** since v3.0,\nand you have to migrate to the \"data/observable\" `fromObject({})` or the `fromObjectRecursive({})` functions."
----
-
-
-
-
-
-
-downloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 33,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to downloaded event."
- }
- ]
- },
- "url": "/api/class/ImageCache#downloadedevent"
- }
- ]
- },
- "15635": {
- "name": "downloadErrorEvent",
- "type": "Property",
- "url": "/api/class/ImageCache#downloaderrorevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to download error event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "downloadErrorEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 37,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to download error event."
- }
- ]
- },
- "url": "/api/class/ImageCache#downloaderrorevent"
- }
- ]
- },
- "15636": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ImageCache#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ImageCache#propertychangeevent"
- }
- ]
- },
- "15637": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ImageCache#on-4",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#on-4-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15645": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ImageCache#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15653": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ImageCache#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15661": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ImageCache#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15669": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ImageCache#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15677": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ImageCache#constructor",
- "flags": {},
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Observable#constructor",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ImageCache(): ImageCache",
- "url": "/api/class/ImageCache#constructor-new-imagecache",
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Observable#constructor",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [],
- "returns": "ImageCache"
- }
- ]
- },
- "15679": {
- "name": "placeholder",
- "type": "Property",
- "url": "/api/class/ImageCache#placeholder",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The image to be used to notify for a pending download request - e.g. loading indicator."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "placeholder: ImageSource",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The image to be used to notify for a pending download request - e.g. loading indicator."
- }
- ]
- },
- "url": "/api/class/ImageCache#placeholder"
- }
- ]
- },
- "15680": {
- "name": "maxRequests",
- "type": "Property",
- "url": "/api/class/ImageCache#maxrequests",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The maximum number of simultaneous download requests. Defaults to 5."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxRequests: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 45,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The maximum number of simultaneous download requests. Defaults to 5."
- }
- ]
- },
- "url": "/api/class/ImageCache#maxrequests"
- }
- ]
- },
- "15681": {
- "name": "enableDownload",
- "type": "Method",
- "url": "/api/class/ImageCache#enabledownload",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "enableDownload(): void",
- "url": "/api/class/ImageCache#enabledownload-enabledownload-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables previously suspended download requests."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15683": {
- "name": "disableDownload",
- "type": "Method",
- "url": "/api/class/ImageCache#disabledownload",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disableDownload(): void",
- "url": "/api/class/ImageCache#disabledownload-disabledownload-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Temporary disables download requests."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15685": {
- "name": "push",
- "type": "Method",
- "url": "/api/class/ImageCache#push",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "push(request: DownloadRequest): any",
- "url": "/api/class/ImageCache#push-push-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a new download request at the top of the download queue. This will be the next immediate download to start."
- }
- ]
- },
- "parameters": [
- {
- "name": "request",
- "type": "DownloadRequest",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "15688": {
- "name": "enqueue",
- "type": "Method",
- "url": "/api/class/ImageCache#enqueue",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "enqueue(request: DownloadRequest): any",
- "url": "/api/class/ImageCache#enqueue-enqueue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 63,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a new download request at the end of the download queue. This will be the last download to start."
- }
- ]
- },
- "parameters": [
- {
- "name": "request",
- "type": "DownloadRequest",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "15691": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ImageCache#get",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(key: string): any",
- "url": "/api/class/ImageCache#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 68,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the image for the specified key. May be undefined if the key is not present in the cache."
- }
- ]
- },
- "parameters": [
- {
- "name": "key",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "15694": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ImageCache#set",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(key: string, image: any): void",
- "url": "/api/class/ImageCache#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 72,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the image for the specified key."
- }
- ]
- },
- "parameters": [
- {
- "name": "key",
- "type": "string",
- "flags": {}
- },
- {
- "name": "image",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15698": {
- "name": "remove",
- "type": "Method",
- "url": "/api/class/ImageCache#remove",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "remove(key: string): void",
- "url": "/api/class/ImageCache#remove-remove-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 76,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the cache for the specified key."
- }
- ]
- },
- "parameters": [
- {
- "name": "key",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15701": {
- "name": "clear",
- "type": "Method",
- "url": "/api/class/ImageCache#clear",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "clear(): void",
- "url": "/api/class/ImageCache#clear-clear-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 80,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all the previously cached images."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "15703": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ImageCache#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 88,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"downloaded\", callback: (args: DownloadedData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 93,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when the image has been downloaded."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"downloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: DownloadedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"downloadError\", callback: (args: DownloadError) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/image-cache/index.d.ts",
- "line": 98,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised if the image download errors."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"downloadError\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: DownloadError) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15737": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ImageCache#setproperty",
- "flags": {},
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ImageCache#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15741": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ImageCache#once",
- "flags": {},
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15749": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ImageCache#off",
- "flags": {},
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15757": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ImageCache#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15765": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ImageCache#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ImageCache#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15773": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ImageCache#notify",
- "flags": {},
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ImageCache#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15777": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ImageCache#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ImageCache#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15782": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ImageCache#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ImageCache#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "15785": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ImageCache#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ImageCache#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "15790": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ImageCache#emit",
- "flags": {},
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ImageCache#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ImageCache.md b/content/api/class/ImageCache.md
deleted file mode 100644
index 47f87a92..00000000
--- a/content/api/class/ImageCache.md
+++ /dev/null
@@ -1,234 +0,0 @@
----
-title: ImageCache
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ImageCache'
-layout: api
-seo:
- description: "Represents a class that stores handles image download requests and caches the already downloaded images."
----
-
-
-
-
-
-
-height: number",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 11,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the height of this instance. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ImageSource#height"
- }
- ]
- },
- "2233": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ImageSource#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the width of this instance. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "width: number",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the width of this instance. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ImageSource#width"
- }
- ]
- },
- "2234": {
- "name": "rotationAngle",
- "type": "Property",
- "url": "/api/class/ImageSource#rotationangle",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotation angle that should be applied to the image. (Used in android)"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "rotationAngle: number",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotation angle that should be applied to the image. (Used in android)"
- }
- ]
- },
- "url": "/api/class/ImageSource#rotationangle"
- }
- ]
- },
- "2235": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ImageSource#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The iOS-specific [UIImage](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImage_Class/) instance. Will be undefined when running on Android."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The iOS-specific [UIImage](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImage_Class/) instance. Will be undefined when running on Android."
- }
- ]
- },
- "url": "/api/class/ImageSource#ios"
- }
- ]
- },
- "2236": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ImageSource#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Android-specific [image](http://developer.android.com/reference/android/graphics/Bitmap.html) instance. Will be undefined when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Android-specific [image](http://developer.android.com/reference/android/graphics/Bitmap.html) instance. Will be undefined when running on iOS."
- }
- ]
- },
- "url": "/api/class/ImageSource#android"
- }
- ]
- },
- "2237": {
- "name": "fromAsset",
- "type": "Method",
- "url": "/api/class/ImageSource#fromasset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromAsset(asset: ImageAsset): Promise<ImageSource>",
- "url": "/api/class/ImageSource#fromasset-fromasset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 119,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromAsset() instead.\nLoads this instance from the specified asset asynchronously."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "asset",
- "type": "ImageAsset",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The ImageAsset instance used to create ImageSource."
- }
- ]
- }
- }
- ],
- "returns": "Promise<ImageSource>"
- }
- ]
- },
- "2240": {
- "name": "loadFromResource",
- "type": "Method",
- "url": "/api/class/ImageSource#loadfromresource",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadFromResource(name: string): boolean",
- "url": "/api/class/ImageSource#loadfromresource-loadfromresource-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 126,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromResourceSync() instead.\nLoads this instance from the specified resource name."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the resource (without its extension)."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2243": {
- "name": "fromResource",
- "type": "Method",
- "url": "/api/class/ImageSource#fromresource",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromResource(name: string): Promise<boolean>",
- "url": "/api/class/ImageSource#fromresource-fromresource-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 133,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromResource() instead.\nLoads this instance from the specified resource name asynchronously."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the resource (without its extension)."
- }
- ]
- }
- }
- ],
- "returns": "Promise<boolean>"
- }
- ]
- },
- "2246": {
- "name": "loadFromFile",
- "type": "Method",
- "url": "/api/class/ImageSource#loadfromfile",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadFromFile(path: string): boolean",
- "url": "/api/class/ImageSource#loadfromfile-loadfromfile-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 140,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromFileSync() instead.\nLoads this instance from the specified file."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The location of the file on the file system."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2249": {
- "name": "fromFile",
- "type": "Method",
- "url": "/api/class/ImageSource#fromfile",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromFile(path: string): Promise<boolean>",
- "url": "/api/class/ImageSource#fromfile-fromfile-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 147,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromFile() instead.\nLoads this instance from the specified file asynchronously."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The location of the file on the file system."
- }
- ]
- }
- }
- ],
- "returns": "Promise<boolean>"
- }
- ]
- },
- "2252": {
- "name": "loadFromData",
- "type": "Method",
- "url": "/api/class/ImageSource#loadfromdata",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadFromData(data: any): boolean",
- "url": "/api/class/ImageSource#loadfromdata-loadfromdata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromDataSync() instead.\nLoads this instance from the specified native image data."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The native data (byte array) to load the image from. This will be either Stream for Android or NSData for iOS."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2255": {
- "name": "fromData",
- "type": "Method",
- "url": "/api/class/ImageSource#fromdata",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromData(data: any): Promise<boolean>",
- "url": "/api/class/ImageSource#fromdata-fromdata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 161,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromData() instead.\nLoads this instance from the specified native image data asynchronously."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The native data (byte array) to load the image from. This will be either Stream for Android or NSData for iOS."
- }
- ]
- }
- }
- ],
- "returns": "Promise<boolean>"
- }
- ]
- },
- "2258": {
- "name": "loadFromBase64",
- "type": "Method",
- "url": "/api/class/ImageSource#loadfrombase64",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadFromBase64(source: string): boolean",
- "url": "/api/class/ImageSource#loadfrombase64-loadfrombase64-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 168,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromBase64Sync() instead.\nLoads this instance from the specified base64 encoded string."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "source",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Base64 string to load the image from."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2261": {
- "name": "fromBase64",
- "type": "Method",
- "url": "/api/class/ImageSource#frombase64",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "fromBase64(source: string): Promise<boolean>",
- "url": "/api/class/ImageSource#frombase64-frombase64-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 175,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromBase64() instead.\nLoads this instance from the specified base64 encoded string asynchronously."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "source",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The Base64 string to load the image from."
- }
- ]
- }
- }
- ],
- "returns": "Promise<boolean>"
- }
- ]
- },
- "2264": {
- "name": "loadFromFontIconCode",
- "type": "Method",
- "url": "/api/class/ImageSource#loadfromfonticoncode",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadFromFontIconCode(source: string, font: Font, color: Color): boolean",
- "url": "/api/class/ImageSource#loadfromfonticoncode-loadfromfonticoncode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "Use ImageSource.fromFontIconCode() instead.\nLoads this instance from the specified font icon code."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "source",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The hex font icon code string"
- }
- ]
- }
- },
- {
- "name": "font",
- "type": "Font",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The font for the corresponding font icon code"
- }
- ]
- }
- },
- {
- "name": "color",
- "type": "Color",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The color of the generated icon image"
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2269": {
- "name": "setNativeSource",
- "type": "Method",
- "url": "/api/class/ImageSource#setnativesource",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeSource(nativeSource: any): void",
- "url": "/api/class/ImageSource#setnativesource-setnativesource-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 191,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the provided native source object (typically a Bitmap or a UIImage).\nThis will update either the android or ios properties, depending on the target os."
- }
- ]
- },
- "parameters": [
- {
- "name": "nativeSource",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The native image object. Will be either a Bitmap for Android or a UIImage for iOS."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2272": {
- "name": "saveToFile",
- "type": "Method",
- "url": "/api/class/ImageSource#savetofile",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "saveToFile(\n path: string,\n format: "png" | "jpeg" | "jpg",\n quality?: number\n): boolean",
- "url": "/api/class/ImageSource#savetofile-savetofile-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Saves this instance to the specified file, using the provided image format and quality."
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path of the file on the file system to save to."
- }
- ]
- }
- },
- {
- "name": "format",
- "type": "\"png\" | \"jpeg\" | \"jpg\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The format (encoding) of the image."
- }
- ]
- }
- },
- {
- "name": "quality",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional parameter, specifying the quality of the encoding. Defaults to the maximum available quality. Quality varies on a scale of 0 to 100."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "2277": {
- "name": "saveToFileAsync",
- "type": "Method",
- "url": "/api/class/ImageSource#savetofileasync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "saveToFileAsync(path: string, format: "png" | "jpeg" | "jpg", quality?: number): Promise<boolean>",
- "url": "/api/class/ImageSource#savetofileasync-savetofileasync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 207,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Saves this instance to the specified file, using the provided image format and quality asynchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The path of the file on the file system to save to."
- }
- ]
- }
- },
- {
- "name": "format",
- "type": "\"png\" | \"jpeg\" | \"jpg\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The format (encoding) of the image."
- }
- ]
- }
- },
- {
- "name": "quality",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional parameter, specifying the quality of the encoding. Defaults to the maximum available quality. Quality varies on a scale of 0 to 100."
- }
- ]
- }
- }
- ],
- "returns": "Promise<boolean>"
- }
- ]
- },
- "2282": {
- "name": "toBase64String",
- "type": "Method",
- "url": "/api/class/ImageSource#tobase64string",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toBase64String(format: "png" | "jpeg" | "jpg", quality?: number): string",
- "url": "/api/class/ImageSource#tobase64string-tobase64string-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Converts the image to base64 encoded string, using the provided image format and quality."
- }
- ]
- },
- "parameters": [
- {
- "name": "format",
- "type": "\"png\" | \"jpeg\" | \"jpg\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The format (encoding) of the image."
- }
- ]
- }
- },
- {
- "name": "quality",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional parameter, specifying the quality of the encoding. Defaults to the maximum available quality. Quality varies on a scale of 0 to 100."
- }
- ]
- }
- }
- ],
- "returns": "string"
- }
- ]
- },
- "2286": {
- "name": "toBase64StringAsync",
- "type": "Method",
- "url": "/api/class/ImageSource#tobase64stringasync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toBase64StringAsync(format: "png" | "jpeg" | "jpg", quality?: number): Promise<string>",
- "url": "/api/class/ImageSource#tobase64stringasync-tobase64stringasync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 221,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Converts the image to base64 encoded string, using the provided image format and quality asynchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "format",
- "type": "\"png\" | \"jpeg\" | \"jpg\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The format (encoding) of the image."
- }
- ]
- }
- },
- {
- "name": "quality",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional parameter, specifying the quality of the encoding. Defaults to the maximum available quality. Quality varies on a scale of 0 to 100."
- }
- ]
- }
- }
- ],
- "returns": "Promise<string>"
- }
- ]
- },
- "2290": {
- "name": "resize",
- "type": "Method",
- "url": "/api/class/ImageSource#resize",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resize(maxSize: number, options?: any): ImageSource",
- "url": "/api/class/ImageSource#resize-resize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns a new ImageSource that is a resized version of this image with the same aspect ratio, but the max dimension set to the provided maxSize."
- }
- ]
- },
- "parameters": [
- {
- "name": "maxSize",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The maximum pixel dimension of the resulting image."
- }
- ]
- }
- },
- {
- "name": "options",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional parameter, Only used for android, options.filter is a boolean which\n determines whether or not bilinear filtering should be used when scaling the bitmap.\n If this is true then bilinear filtering will be used when scaling which has\n better image quality at the cost of worse performance. If this is false then\n nearest-neighbor scaling is used instead which will have worse image quality\n but is faster. Recommended default is to set filter to 'true' as the cost of\n bilinear filtering is typically minimal and the improved image quality is significant."
- }
- ]
- }
- }
- ],
- "returns": "ImageSource"
- }
- ]
- },
- "2294": {
- "name": "resizeAsync",
- "type": "Method",
- "url": "/api/class/ImageSource#resizeasync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resizeAsync(maxSize: number, options?: any): Promise<ImageSource>",
- "url": "/api/class/ImageSource#resizeasync-resizeasync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/image-source/index.d.ts",
- "line": 247,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns a new ImageSource that is a resized version of this image with the same aspect ratio, but the max dimension set to the provided maxSize asynchronously."
- }
- ]
- },
- "parameters": [
- {
- "name": "maxSize",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The maximum pixel dimension of the resulting image."
- }
- ]
- }
- },
- {
- "name": "options",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Optional parameter, Only used for android, options.filter is a boolean which\n determines whether or not bilinear filtering should be used when scaling the bitmap.\n If this is true then bilinear filtering will be used when scaling which has\n better image quality at the cost of worse performance. If this is false then\n nearest-neighbor scaling is used instead which will have worse image quality\n but is faster. Recommended default is to set filter to 'true' as the cost of\n bilinear filtering is typically minimal and the improved image quality is significant."
- }
- ]
- }
- }
- ],
- "returns": "Promise<ImageSource>"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ImageSource.md b/content/api/class/ImageSource.md
deleted file mode 100644
index 2199b374..00000000
--- a/content/api/class/ImageSource.md
+++ /dev/null
@@ -1,528 +0,0 @@
----
-title: ImageSource
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ImageSource'
-layout: api
-seo:
- description: "Encapsulates the common abstraction behind a platform specific object (typically a Bitmap) that is used as a source for images."
----
-
-
-
-
-
-
-setInheritedValue: (value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 118,
- "character": 4
- }
- ],
- "url": "/api/class/InheritedCssProperty#setinheritedvalue"
- }
- ]
- },
- "12041": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#name",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 75,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#name"
- }
- ]
- },
- "12042": {
- "name": "cssName",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#cssname",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "cssName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 76,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#cssname"
- }
- ]
- },
- "12043": {
- "name": "cssLocalName",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#csslocalname",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "cssLocalName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 77,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#csslocalname"
- }
- ]
- },
- "12044": {
- "name": "cssValueDescriptor",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#cssvaluedescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "cssValueDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 78,
- "character": 23
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#cssvaluedescriptor"
- }
- ]
- },
- "12045": {
- "name": "localValueDescriptor",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#localvaluedescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "localValueDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 79,
- "character": 23
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#localvaluedescriptor"
- }
- ]
- },
- "12046": {
- "name": "isStyleProperty",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#isstyleproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "isStyleProperty: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#isstyleproperty"
- }
- ]
- },
- "12047": {
- "name": "key",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#key",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 81,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#key"
- }
- ]
- },
- "12048": {
- "name": "getDefault",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#getdefault",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "getDefault: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 82,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#getdefault"
- }
- ]
- },
- "12049": {
- "name": "setNative",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#setnative",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "setNative: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 83,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#setnative"
- }
- ]
- },
- "12050": {
- "name": "sourceKey",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#sourcekey",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "sourceKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 84,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#sourcekey"
- }
- ]
- },
- "12051": {
- "name": "defaultValueKey",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#defaultvaluekey",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "defaultValueKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 85,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#defaultvaluekey"
- }
- ]
- },
- "12052": {
- "name": "defaultValue",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#defaultvalue",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "defaultValue: U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 86,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#defaultvalue"
- }
- ]
- },
- "12053": {
- "name": "overrideHandlers",
- "type": "Property",
- "url": "/api/class/InheritedCssProperty#overridehandlers",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "code": "overrideHandlers: (options: CssPropertyOptions<T, U>) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 87,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "url": "/api/class/InheritedCssProperty#overridehandlers"
- }
- ]
- },
- "12057": {
- "name": "register",
- "type": "Method",
- "url": "/api/class/InheritedCssProperty#register",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "register(cls: {}): void",
- "url": "/api/class/InheritedCssProperty#register-register-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 89,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "parameters": [
- {
- "name": "cls",
- "type": "{}",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "12062": {
- "name": "isSet",
- "type": "Method",
- "url": "/api/class/InheritedCssProperty#isset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isSet(instance: T): boolean",
- "url": "/api/class/InheritedCssProperty#isset-isset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CssProperty"
- },
- "parameters": [
- {
- "name": "instance",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/InheritedCssProperty.md b/content/api/class/InheritedCssProperty.md
deleted file mode 100644
index 7fce1feb..00000000
--- a/content/api/class/InheritedCssProperty.md
+++ /dev/null
@@ -1,62 +0,0 @@
----
-title: InheritedCssProperty
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'InheritedCssProperty'
-layout: api
-seo:
- description: InheritedCssProperty
----
-
-
-
-
-
-
-sourceKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 69,
- "character": 13
- }
- ],
- "url": "/api/class/InheritedProperty#sourcekey"
- }
- ]
- },
- "11959": {
- "name": "setInheritedValue",
- "type": "Property",
- "url": "/api/class/InheritedProperty#setinheritedvalue",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "setInheritedValue: (value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 70,
- "character": 13
- }
- ],
- "url": "/api/class/InheritedProperty#setinheritedvalue"
- }
- ]
- },
- "11963": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/InheritedProperty#name",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 45,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#name"
- }
- ]
- },
- "11964": {
- "name": "key",
- "type": "Property",
- "url": "/api/class/InheritedProperty#key",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 46,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#key"
- }
- ]
- },
- "11965": {
- "name": "getDefault",
- "type": "Property",
- "url": "/api/class/InheritedProperty#getdefault",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "getDefault: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 47,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#getdefault"
- }
- ]
- },
- "11966": {
- "name": "setNative",
- "type": "Property",
- "url": "/api/class/InheritedProperty#setnative",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "setNative: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 48,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#setnative"
- }
- ]
- },
- "11967": {
- "name": "defaultValueKey",
- "type": "Property",
- "url": "/api/class/InheritedProperty#defaultvaluekey",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "defaultValueKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 49,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#defaultvaluekey"
- }
- ]
- },
- "11968": {
- "name": "defaultValue",
- "type": "Property",
- "url": "/api/class/InheritedProperty#defaultvalue",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "defaultValue: U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 50,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#defaultvalue"
- }
- ]
- },
- "11969": {
- "name": "nativeValueChange",
- "type": "Property",
- "url": "/api/class/InheritedProperty#nativevaluechange",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "nativeValueChange: (owner: T, value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 51,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#nativevaluechange"
- }
- ]
- },
- "11974": {
- "name": "isStyleProperty",
- "type": "Property",
- "url": "/api/class/InheritedProperty#isstyleproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "isStyleProperty: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#isstyleproperty"
- }
- ]
- },
- "11975": {
- "name": "get",
- "type": "Property",
- "url": "/api/class/InheritedProperty#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "get: () => U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#get"
- }
- ]
- },
- "11978": {
- "name": "set",
- "type": "Property",
- "url": "/api/class/InheritedProperty#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "set: (value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 54,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#set"
- }
- ]
- },
- "11982": {
- "name": "overrideHandlers",
- "type": "Property",
- "url": "/api/class/InheritedProperty#overridehandlers",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "overrideHandlers: (options: PropertyOptions<T, U>) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#overridehandlers"
- }
- ]
- },
- "11986": {
- "name": "enumerable",
- "type": "Property",
- "url": "/api/class/InheritedProperty#enumerable",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "enumerable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#enumerable"
- }
- ]
- },
- "11987": {
- "name": "configurable",
- "type": "Property",
- "url": "/api/class/InheritedProperty#configurable",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "code": "configurable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 57,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "url": "/api/class/InheritedProperty#configurable"
- }
- ]
- },
- "11988": {
- "name": "register",
- "type": "Method",
- "url": "/api/class/InheritedProperty#register",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "register(cls: {}): void",
- "url": "/api/class/InheritedProperty#register-register-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "parameters": [
- {
- "name": "cls",
- "type": "{}",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11993": {
- "name": "isSet",
- "type": "Method",
- "url": "/api/class/InheritedProperty#isset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Property"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isSet(instance: T): boolean",
- "url": "/api/class/InheritedProperty#isset-isset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 62,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Property"
- },
- "parameters": [
- {
- "name": "instance",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/InheritedProperty.md b/content/api/class/InheritedProperty.md
deleted file mode 100644
index 897e3ca7..00000000
--- a/content/api/class/InheritedProperty.md
+++ /dev/null
@@ -1,76 +0,0 @@
----
-title: InheritedProperty
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'InheritedProperty'
-layout: api
-seo:
- description: InheritedProperty
----
-
-
-
-
-
-
-actualLength: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 15,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the actual length of an ItemSpec."
- }
- ]
- },
- "url": "/api/class/ItemSpec#actuallength"
- }
- ]
- },
- "37632": {
- "name": "gridUnitType",
- "type": "Property",
- "url": "/api/class/ItemSpec#gridunittype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns unit type of this ItemSpec instance."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "gridUnitType: GridUnitType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 20,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns unit type of this ItemSpec instance."
- }
- ]
- },
- "url": "/api/class/ItemSpec#gridunittype"
- }
- ]
- },
- "37633": {
- "name": "isAbsolute",
- "type": "Property",
- "url": "/api/class/ItemSpec#isabsolute",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if this ItemSpec instance holds\nan absolute (pixel) value."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isAbsolute: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if this ItemSpec instance holds\nan absolute (pixel) value."
- }
- ]
- },
- "url": "/api/class/ItemSpec#isabsolute"
- }
- ]
- },
- "37634": {
- "name": "isAuto",
- "type": "Property",
- "url": "/api/class/ItemSpec#isauto",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if this GridLength instance is\nautomatic (not specified)."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isAuto: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 32,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if this GridLength instance is\nautomatic (not specified)."
- }
- ]
- },
- "url": "/api/class/ItemSpec#isauto"
- }
- ]
- },
- "37635": {
- "name": "isStar",
- "type": "Property",
- "url": "/api/class/ItemSpec#isstar",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if this ItemSpec instance holds weighted proportion\nof available space."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isStar: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 38,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if this ItemSpec instance holds weighted proportion\nof available space."
- }
- ]
- },
- "url": "/api/class/ItemSpec#isstar"
- }
- ]
- },
- "37636": {
- "name": "value",
- "type": "Property",
- "url": "/api/class/ItemSpec#value",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns value part of this ItemSpec instance."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "value: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns value part of this ItemSpec instance."
- }
- ]
- },
- "url": "/api/class/ItemSpec#value"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ItemSpec.md b/content/api/class/ItemSpec.md
deleted file mode 100644
index e534d79b..00000000
--- a/content/api/class/ItemSpec.md
+++ /dev/null
@@ -1,134 +0,0 @@
----
-title: ItemSpec
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ItemSpec'
-layout: api
-seo:
- description: "Defines row/column specific properties that apply to GridLayout elements."
----
-
-
-
-
-
-
-animations: Keyframe[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 91,
- "character": 1
- }
- ],
- "url": "/api/class/KeyframeAnimation#animations"
- }
- ]
- },
- "7445": {
- "name": "delay",
- "type": "Property",
- "url": "/api/class/KeyframeAnimation#delay",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The amount of time, in milliseconds, to delay starting the animation."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "delay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 96,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The amount of time, in milliseconds, to delay starting the animation."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimation#delay"
- }
- ]
- },
- "7446": {
- "name": "iterations",
- "type": "Property",
- "url": "/api/class/KeyframeAnimation#iterations",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies how many times the animation should be played. Default is 1.\niOS animations support fractional iterations, i.e. 1.5.\nTo repeat an animation infinitely, use Number.POSITIVE_INFINITY"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iterations: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies how many times the animation should be played. Default is 1.\niOS animations support fractional iterations, i.e. 1.5.\nTo repeat an animation infinitely, use Number.POSITIVE_INFINITY"
- }
- ]
- },
- "url": "/api/class/KeyframeAnimation#iterations"
- }
- ]
- },
- "7447": {
- "name": "isPlaying",
- "type": "Property",
- "url": "/api/class/KeyframeAnimation#isplaying",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if the application is currently running."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isPlaying: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 108,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if the application is currently running."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimation#isplaying"
- }
- ]
- },
- "7448": {
- "name": "play",
- "type": "Property",
- "url": "/api/class/KeyframeAnimation#play",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "play: (view: View) => Promise<void>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 113,
- "character": 8
- }
- ],
- "url": "/api/class/KeyframeAnimation#play"
- }
- ]
- },
- "7452": {
- "name": "cancel",
- "type": "Property",
- "url": "/api/class/KeyframeAnimation#cancel",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "cancel: () => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 118,
- "character": 8
- }
- ],
- "url": "/api/class/KeyframeAnimation#cancel"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/KeyframeAnimation.md b/content/api/class/KeyframeAnimation.md
deleted file mode 100644
index f8a829e5..00000000
--- a/content/api/class/KeyframeAnimation.md
+++ /dev/null
@@ -1,148 +0,0 @@
----
-title: KeyframeAnimation
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'KeyframeAnimation'
-layout: api
-seo:
- description: KeyframeAnimation
----
-
-
-
-
-
-
-name?: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The animation name."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#name"
- }
- ]
- },
- "7460": {
- "name": "duration",
- "type": "Property",
- "url": "/api/class/KeyframeAnimationInfo#duration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The length of the animation in milliseconds. The default duration is 300 milliseconds."
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "duration?: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The length of the animation in milliseconds. The default duration is 300 milliseconds."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#duration"
- }
- ]
- },
- "7461": {
- "name": "delay",
- "type": "Property",
- "url": "/api/class/KeyframeAnimationInfo#delay",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The amount of time, in milliseconds, to delay starting the animation."
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "delay?: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The amount of time, in milliseconds, to delay starting the animation."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#delay"
- }
- ]
- },
- "7462": {
- "name": "iterations",
- "type": "Property",
- "url": "/api/class/KeyframeAnimationInfo#iterations",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies how many times the animation should be played. Default is 1.\niOS animations support fractional iterations, i.e. 1.5.\nTo repeat an animation infinitely, use Number.POSITIVE_INFINITY"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "iterations?: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 71,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies how many times the animation should be played. Default is 1.\niOS animations support fractional iterations, i.e. 1.5.\nTo repeat an animation infinitely, use Number.POSITIVE_INFINITY"
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#iterations"
- }
- ]
- },
- "7463": {
- "name": "curve",
- "type": "Property",
- "url": "/api/class/KeyframeAnimationInfo#curve",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional animation curve. Possible values are contained in the [AnimationCurve enumeration](../modules/_ui_enums_.animationcurve.html).\nAlternatively, you can pass an instance of type UIViewAnimationCurve for iOS or android.animation.TimeInterpolator for Android."
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "curve?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 77,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional animation curve. Possible values are contained in the [AnimationCurve enumeration](../modules/_ui_enums_.animationcurve.html).\nAlternatively, you can pass an instance of type UIViewAnimationCurve for iOS or android.animation.TimeInterpolator for Android."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#curve"
- }
- ]
- },
- "7464": {
- "name": "isForwards",
- "type": "Property",
- "url": "/api/class/KeyframeAnimationInfo#isforwards",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether the animation values will be applied on the animated object after the animation finishes."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isForwards: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 82,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether the animation values will be applied on the animated object after the animation finishes."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#isforwards"
- }
- ]
- },
- "7465": {
- "name": "isReverse",
- "type": "Property",
- "url": "/api/class/KeyframeAnimationInfo#isreverse",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If true the animation will be played backwards."
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "isReverse?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/animation/keyframe-animation.d.ts",
- "line": 87,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If true the animation will be played backwards."
- }
- ]
- },
- "url": "/api/class/KeyframeAnimationInfo#isreverse"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/KeyframeAnimationInfo.md b/content/api/class/KeyframeAnimationInfo.md
deleted file mode 100644
index 4ecbd8e4..00000000
--- a/content/api/class/KeyframeAnimationInfo.md
+++ /dev/null
@@ -1,162 +0,0 @@
----
-title: KeyframeAnimationInfo
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'KeyframeAnimationInfo'
-layout: api
-seo:
- description: "Defines animation options for the View.animate method."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Label#layoutchangedevent"
- }
- ]
- },
- "15817": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Label#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Label#showingmodallyevent"
- }
- ]
- },
- "15818": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Label#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Label#shownmodallyevent"
- }
- ]
- },
- "15819": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Label#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Label#accessibilityblurevent"
- }
- ]
- },
- "15820": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Label#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Label#accessibilityfocusevent"
- }
- ]
- },
- "15821": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Label#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Label#accessibilityfocuschangedevent"
- }
- ]
- },
- "15822": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Label#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Label#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "15831": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Label#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Label#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15839": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Label#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Label#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "15845": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Label#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Label#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "15849": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Label#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#accessibilityperformescapeevent"
- }
- ]
- },
- "15850": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Label#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Label#loadedevent"
- }
- ]
- },
- "15851": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Label#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Label#unloadedevent"
- }
- ]
- },
- "15852": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Label#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Label#createdevent"
- }
- ]
- },
- "15853": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Label#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Label#disposenativeviewevent"
- }
- ]
- },
- "15854": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Label#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Label#propertychangeevent"
- }
- ]
- },
- "15855": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Label#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15863": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Label#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15871": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Label#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15879": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Label#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15887": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Label#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "15895": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Label#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Label(): Label",
- "url": "/api/class/Label#constructor-new-label",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "Label"
- }
- ]
- },
- "15897": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Label#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/label/index.d.ts",
- "line": 10,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/Label#android"
- }
- ]
- },
- "15898": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Label#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/label/index.d.ts",
- "line": 15,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/Label#ios"
- }
- ]
- },
- "15899": {
- "name": "textWrap",
- "type": "Property",
- "url": "/api/class/Label#textwrap",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the Label wraps text or not."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textWrap: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/label/index.d.ts",
- "line": 20,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the Label wraps text or not."
- }
- ]
- },
- "url": "/api/class/Label#textwrap"
- }
- ]
- },
- "15900": {
- "name": "nativeTextViewProtected",
- "type": "Property",
- "url": "/api/class/Label#nativetextviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "nativeTextViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 14,
- "character": 17
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "url": "/api/class/Label#nativetextviewprotected"
- }
- ]
- },
- "15901": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/Label#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "url": "/api/class/Label#text"
- }
- ]
- },
- "15902": {
- "name": "formattedText",
- "type": "Property",
- "url": "/api/class/Label#formattedtext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "formattedText: FormattedString",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "url": "/api/class/Label#formattedtext"
- }
- ]
- },
- "15903": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/Label#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "url": "/api/class/Label#fontsize"
- }
- ]
- },
- "15904": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/Label#letterspacing",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "url": "/api/class/Label#letterspacing"
- }
- ]
- },
- "15905": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/Label#lineheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "url": "/api/class/Label#lineheight"
- }
- ]
- },
- "15906": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/Label#textalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "url": "/api/class/Label#textalignment"
- }
- ]
- },
- "15907": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/Label#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "url": "/api/class/Label#textdecoration"
- }
- ]
- },
- "15908": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/Label#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "url": "/api/class/Label#texttransform"
- }
- ]
- },
- "15909": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/Label#textshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "url": "/api/class/Label#textshadow"
- }
- ]
- },
- "15910": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/Label#whitespace",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/Label#whitespace"
- }
- ]
- },
- "15911": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/Label#maxlines",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/Label#maxlines"
- }
- ]
- },
- "15912": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/Label#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/Label#padding"
- }
- ]
- },
- "15913": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/Label#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/Label#paddingbottom"
- }
- ]
- },
- "15914": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/Label#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/Label#paddingleft"
- }
- ]
- },
- "15915": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/Label#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/Label#paddingright"
- }
- ]
- },
- "15916": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/Label#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/Label#paddingtop"
- }
- ]
- },
- "15927": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Label#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Label#bindingcontext"
- }
- ]
- },
- "15928": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Label#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Label#bordercolor"
- }
- ]
- },
- "15929": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Label#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Label#bordertopcolor"
- }
- ]
- },
- "15930": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Label#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderrightcolor"
- }
- ]
- },
- "15931": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Label#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderbottomcolor"
- }
- ]
- },
- "15932": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Label#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderleftcolor"
- }
- ]
- },
- "15933": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Label#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderwidth"
- }
- ]
- },
- "15934": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Label#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Label#bordertopwidth"
- }
- ]
- },
- "15935": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Label#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderrightwidth"
- }
- ]
- },
- "15936": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Label#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderbottomwidth"
- }
- ]
- },
- "15937": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Label#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderleftwidth"
- }
- ]
- },
- "15938": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Label#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderradius"
- }
- ]
- },
- "15939": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Label#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Label#bordertopleftradius"
- }
- ]
- },
- "15940": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Label#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Label#bordertoprightradius"
- }
- ]
- },
- "15941": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Label#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderbottomrightradius"
- }
- ]
- },
- "15942": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Label#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Label#borderbottomleftradius"
- }
- ]
- },
- "15943": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Label#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Label#color"
- }
- ]
- },
- "15944": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Label#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Label#accessible"
- }
- ]
- },
- "15945": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Label#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Label#accessibilityhidden"
- }
- ]
- },
- "15946": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Label#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Label#accessibilityidentifier"
- }
- ]
- },
- "15947": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Label#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Label#accessibilityrole"
- }
- ]
- },
- "15948": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Label#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Label#accessibilitystate"
- }
- ]
- },
- "15949": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Label#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Label#accessibilitylabel"
- }
- ]
- },
- "15950": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Label#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Label#accessibilityvalue"
- }
- ]
- },
- "15951": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Label#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Label#accessibilityhint"
- }
- ]
- },
- "15952": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Label#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#accessibilityliveregion"
- }
- ]
- },
- "15953": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Label#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Label#accessibilitylanguage"
- }
- ]
- },
- "15954": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Label#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Label#accessibilitymediasession"
- }
- ]
- },
- "15955": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Label#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Label#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "15956": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Label#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Label#iosaccessibilityminfontscale"
- }
- ]
- },
- "15957": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Label#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Label#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "15958": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Label#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Label#androidcontentdescriptionupdated"
- }
- ]
- },
- "15959": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Label#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#automationtext"
- }
- ]
- },
- "15960": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Label#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Label#androidelevation"
- }
- ]
- },
- "15961": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Label#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Label#androiddynamicelevationoffset"
- }
- ]
- },
- "15962": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Label#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Label#background"
- }
- ]
- },
- "15963": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Label#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Label#backgroundcolor"
- }
- ]
- },
- "15964": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Label#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Label#backgroundimage"
- }
- ]
- },
- "15965": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Label#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Label#boxshadow"
- }
- ]
- },
- "15966": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Label#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Label#minwidth"
- }
- ]
- },
- "15967": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Label#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Label#minheight"
- }
- ]
- },
- "15968": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Label#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Label#width"
- }
- ]
- },
- "15969": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Label#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Label#height"
- }
- ]
- },
- "15970": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Label#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Label#margin"
- }
- ]
- },
- "15971": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Label#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Label#marginleft"
- }
- ]
- },
- "15972": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Label#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Label#margintop"
- }
- ]
- },
- "15973": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Label#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Label#marginright"
- }
- ]
- },
- "15974": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Label#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Label#marginbottom"
- }
- ]
- },
- "15975": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Label#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Label#horizontalalignment"
- }
- ]
- },
- "15976": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Label#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Label#verticalalignment"
- }
- ]
- },
- "15977": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Label#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Label#visibility"
- }
- ]
- },
- "15978": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Label#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Label#opacity"
- }
- ]
- },
- "15979": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Label#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Label#rotate"
- }
- ]
- },
- "15980": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Label#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Label#rotatex"
- }
- ]
- },
- "15981": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Label#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Label#rotatey"
- }
- ]
- },
- "15982": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Label#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Label#perspective"
- }
- ]
- },
- "15983": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Label#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Label#translatex"
- }
- ]
- },
- "15984": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Label#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Label#translatey"
- }
- ]
- },
- "15985": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Label#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Label#scalex"
- }
- ]
- },
- "15986": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Label#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Label#scaley"
- }
- ]
- },
- "15987": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Label#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Label#originx"
- }
- ]
- },
- "15988": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Label#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Label#originy"
- }
- ]
- },
- "15989": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Label#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Label#isenabled"
- }
- ]
- },
- "15990": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Label#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Label#isuserinteractionenabled"
- }
- ]
- },
- "15991": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Label#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Label#iosoverflowsafearea"
- }
- ]
- },
- "15992": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Label#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Label#iosoverflowsafeareaenabled"
- }
- ]
- },
- "15993": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Label#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Label#iosignoresafearea"
- }
- ]
- },
- "15994": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Label#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Label#islayoutvalid"
- }
- ]
- },
- "15995": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Label#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Label#csstype"
- }
- ]
- },
- "15996": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Label#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#cssclasses"
- }
- ]
- },
- "15997": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Label#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#csspseudoclasses"
- }
- ]
- },
- "15998": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Label#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Label#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16002": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Label#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Label#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16009": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Label#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Label#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16011": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Label#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Label#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16013": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Label#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Label#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16015": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Label#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Label#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16019": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Label#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Label#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16025": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Label#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Label#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16029": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Label#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Label#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16035": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Label#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Label#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16037": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Label#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Label#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "16040": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Label#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Label#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "16048": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Label#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Label#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Label#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Label#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Label#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/Label#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/Label#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "16091": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Label#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Label#modal"
- }
- ]
- },
- "16092": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Label#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Label#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "16095": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Label#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Label#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "16098": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Label#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Label#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "16105": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Label#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Label#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "16107": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Label#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Label#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "16109": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Label#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Label#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "16112": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Label#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Label#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "16114": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Label#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Label#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16126": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Label#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Label#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16128": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Label#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Label#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16130": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Label#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Label#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "16132": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Label#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Label#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16138": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Label#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Label#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16140": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Label#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Label#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16142": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Label#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Label#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16144": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Label#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Label#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16150": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Label#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Label#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16153": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Label#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Label#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16156": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Label#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Label#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16225": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Label#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Label#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16231": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Label#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Label#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16236": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Label#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Label#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16238": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Label#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Label#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16240": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Label#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Label#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16243": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Label#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Label#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "16246": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Label#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Label#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "16250": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Label#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#testid"
- }
- ]
- },
- "16251": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Label#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#touchanimation"
- }
- ]
- },
- "16252": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Label#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#ignoretouchanimation"
- }
- ]
- },
- "16253": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Label#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#touchdelay"
- }
- ]
- },
- "16254": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Label#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#closemodalcallback"
- }
- ]
- },
- "16255": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Label#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Label#transitionid"
- }
- ]
- },
- "16256": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Label#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#islayoutvalid"
- }
- ]
- },
- "16257": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Label#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Label#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16259": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Label#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Label#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16262": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Label#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16270": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Label#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16278": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Label#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16286": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Label#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Label#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "16289": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Label#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Label#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16292": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Label#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Label#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16296": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Label#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Label#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16302": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Label#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Label#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16304": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Label#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Label#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16306": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Label#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Label#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16308": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Label#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Label#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "16312": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Label#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Label#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "16316": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Label#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Label#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "16320": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Label#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Label#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16322": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Label#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Label#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16328": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Label#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Label#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16330": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Label#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Label#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16334": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Label#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#domnode"
- }
- ]
- },
- "16335": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Label#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#recyclenativeview"
- }
- ]
- },
- "16336": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Label#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Label#viewcontroller"
- }
- ]
- },
- "16337": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Label#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Label#nativeviewprotected"
- }
- ]
- },
- "16338": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Label#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Label#parent"
- }
- ]
- },
- "16339": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Label#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Label#iscollapsed"
- }
- ]
- },
- "16340": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Label#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Label#id"
- }
- ]
- },
- "16341": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Label#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Label#classname"
- }
- ]
- },
- "16342": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Label#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Label#sharedtransitiontag"
- }
- ]
- },
- "16343": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Label#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Label#sharedtransitionignore"
- }
- ]
- },
- "16344": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Label#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#domid"
- }
- ]
- },
- "16345": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Label#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#context"
- }
- ]
- },
- "16346": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Label#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#isaddedtonativevisualtree"
- }
- ]
- },
- "16347": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Label#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#cssstate"
- }
- ]
- },
- "16348": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Label#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#stylescope"
- }
- ]
- },
- "16353": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Label#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Label#suspendnativeupdatescount"
- }
- ]
- },
- "16354": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Label#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#isstylescopehost"
- }
- ]
- },
- "16355": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Label#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "16356": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Label#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#left"
- }
- ]
- },
- "16357": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Label#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#top"
- }
- ]
- },
- "16358": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Label#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveleft"
- }
- ]
- },
- "16359": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Label#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivetop"
- }
- ]
- },
- "16360": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Label#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#dock"
- }
- ]
- },
- "16361": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Label#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#row"
- }
- ]
- },
- "16362": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Label#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#col"
- }
- ]
- },
- "16363": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Label#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#column"
- }
- ]
- },
- "16364": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Label#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#rowspan"
- }
- ]
- },
- "16365": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Label#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#colspan"
- }
- ]
- },
- "16366": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Label#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#columnspan"
- }
- ]
- },
- "16367": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Label#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#order"
- }
- ]
- },
- "16368": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Label#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#flexgrow"
- }
- ]
- },
- "16369": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Label#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#flexshrink"
- }
- ]
- },
- "16370": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Label#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#flexwrapbefore"
- }
- ]
- },
- "16371": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Label#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#alignself"
- }
- ]
- },
- "16372": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Label#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#oldleft"
- }
- ]
- },
- "16373": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Label#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#oldtop"
- }
- ]
- },
- "16374": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Label#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#oldright"
- }
- ]
- },
- "16375": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Label#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#oldbottom"
- }
- ]
- },
- "16376": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Label#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#ignoreflexminwidthheightreset"
- }
- ]
- },
- "16377": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Label#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveminwidth"
- }
- ]
- },
- "16378": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Label#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveminheight"
- }
- ]
- },
- "16379": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Label#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivewidth"
- }
- ]
- },
- "16380": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Label#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveheight"
- }
- ]
- },
- "16381": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Label#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivemargintop"
- }
- ]
- },
- "16382": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Label#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivemarginright"
- }
- ]
- },
- "16383": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Label#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivemarginbottom"
- }
- ]
- },
- "16384": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Label#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivemarginleft"
- }
- ]
- },
- "16385": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Label#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivepaddingtop"
- }
- ]
- },
- "16386": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Label#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivepaddingright"
- }
- ]
- },
- "16387": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Label#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivepaddingbottom"
- }
- ]
- },
- "16388": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Label#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivepaddingleft"
- }
- ]
- },
- "16389": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Label#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectivebordertopwidth"
- }
- ]
- },
- "16390": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Label#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveborderrightwidth"
- }
- ]
- },
- "16391": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Label#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveborderbottomwidth"
- }
- ]
- },
- "16392": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Label#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#effectiveborderleftwidth"
- }
- ]
- },
- "16393": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Label#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#defaultpaddingtop"
- }
- ]
- },
- "16394": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Label#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#defaultpaddingright"
- }
- ]
- },
- "16395": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Label#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#defaultpaddingbottom"
- }
- ]
- },
- "16396": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Label#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#defaultpaddingleft"
- }
- ]
- },
- "16397": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Label#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "url": "/api/class/Label#ispaddingrelative"
- }
- ]
- },
- "16399": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Label#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Label#reusable"
- }
- ]
- },
- "16400": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Label#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Label#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "16404": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Label#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Label#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "16408": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Label#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Label#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "16410": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Label#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Label#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "16414": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Label#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Label#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16416": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Label#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Label#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "16420": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Label#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Label#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "16424": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Label#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Label#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "16428": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Label#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Label#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "16430": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Label#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Label#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16432": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Label#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Label#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16436": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Label#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Label#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16438": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Label#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Label#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16440": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Label#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Label#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16443": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Label#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Label#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16446": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Label#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Label#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "16452": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Label#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Label#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16454": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Label#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Label#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16456": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Label#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Label#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16459": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Label#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Label#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16462": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Label#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Label#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16466": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Label#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Label#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16469": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Label#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Label#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16473": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Label#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Label#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16477": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Label#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Label#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16480": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Label#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Label#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16482": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Label#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Label#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16485": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Label#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Label#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16488": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Label#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Label#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16491": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Label#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Label#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "16493": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Label#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Label#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16495": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Label#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Label#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16497": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Label#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Label#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16502": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Label#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Label#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16505": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Label#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Label#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16508": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Label#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Label#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16511": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Label#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Label#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "16514": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Label#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Label#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16518": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Label#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Label#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16521": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Label#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Label#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16525": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Label#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Label#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16528": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Label#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Label#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16531": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Label#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Label#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16533": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Label#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Label#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "16537": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Label#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Label#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16540": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Label#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Label#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16542": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Label#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Label#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16545": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Label#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Label#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "16548": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Label#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Label#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16552": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Label#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Label#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16560": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Label#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Label#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16564": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Label#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Label#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16569": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Label#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Label#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16572": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Label#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Label#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "16577": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Label#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Label#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "TextBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Label.md b/content/api/class/Label.md
deleted file mode 100644
index f6976921..00000000
--- a/content/api/class/Label.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: Label
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Label'
-layout: api
-seo:
- description: "Represents a text label."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#layoutchangedevent"
- }
- ]
- },
- "40129": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#showingmodallyevent"
- }
- ]
- },
- "40130": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#shownmodallyevent"
- }
- ]
- },
- "40131": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityblurevent"
- }
- ]
- },
- "40132": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityfocusevent"
- }
- ]
- },
- "40133": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityfocuschangedevent"
- }
- ]
- },
- "40134": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/LayoutBase#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "40143": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/LayoutBase#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40151": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/LayoutBase#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/LayoutBase#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "40157": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/LayoutBase#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/LayoutBase#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "40161": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#accessibilityperformescapeevent"
- }
- ]
- },
- "40162": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#loadedevent"
- }
- ]
- },
- "40163": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#unloadedevent"
- }
- ]
- },
- "40164": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/LayoutBase#createdevent"
- }
- ]
- },
- "40165": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/LayoutBase#disposenativeviewevent"
- }
- ]
- },
- "40166": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/LayoutBase#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/LayoutBase#propertychangeevent"
- }
- ]
- },
- "40167": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/LayoutBase#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40175": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/LayoutBase#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40183": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/LayoutBase#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40191": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/LayoutBase#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40199": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/LayoutBase#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40207": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/LayoutBase#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new LayoutBase(): LayoutBase",
- "url": "/api/class/LayoutBase#constructor-new-layoutbase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "LayoutBase"
- }
- ]
- },
- "40209": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/LayoutBase#getchildrencount",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/LayoutBase#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "40211": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/LayoutBase#getchildat",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/LayoutBase#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "40214": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/LayoutBase#getchildindex",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/LayoutBase#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "40217": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#addchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/LayoutBase#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40220": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#insertchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/LayoutBase#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40224": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#removechild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/LayoutBase#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40227": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/LayoutBase#removechildren",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/LayoutBase#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40229": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#registerlayoutchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/LayoutBase#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40232": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#unregisterlayoutchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/LayoutBase#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40235": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#eachlayoutchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/LayoutBase#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40242": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/LayoutBase#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/LayoutBase#padding"
- }
- ]
- },
- "40243": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/LayoutBase#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/LayoutBase#paddingbottom"
- }
- ]
- },
- "40244": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/LayoutBase#paddingleft"
- }
- ]
- },
- "40245": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/LayoutBase#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/LayoutBase#paddingright"
- }
- ]
- },
- "40246": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/LayoutBase#paddingtop"
- }
- ]
- },
- "40247": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/LayoutBase#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/LayoutBase#cliptobounds"
- }
- ]
- },
- "40248": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/LayoutBase#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#ispassthroughparentenabled"
- }
- ]
- },
- "40260": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/LayoutBase#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/LayoutBase#iosoverflowsafearea"
- }
- ]
- },
- "40261": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/LayoutBase#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/LayoutBase#android"
- }
- ]
- },
- "40262": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/LayoutBase#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/LayoutBase#ios"
- }
- ]
- },
- "40263": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/LayoutBase#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/LayoutBase#bindingcontext"
- }
- ]
- },
- "40264": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/LayoutBase#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#bordercolor"
- }
- ]
- },
- "40265": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/LayoutBase#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#bordertopcolor"
- }
- ]
- },
- "40266": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderrightcolor"
- }
- ]
- },
- "40267": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderbottomcolor"
- }
- ]
- },
- "40268": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderleftcolor"
- }
- ]
- },
- "40269": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderwidth"
- }
- ]
- },
- "40270": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#bordertopwidth"
- }
- ]
- },
- "40271": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderrightwidth"
- }
- ]
- },
- "40272": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderbottomwidth"
- }
- ]
- },
- "40273": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderleftwidth"
- }
- ]
- },
- "40274": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderradius"
- }
- ]
- },
- "40275": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/LayoutBase#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#bordertopleftradius"
- }
- ]
- },
- "40276": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/LayoutBase#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#bordertoprightradius"
- }
- ]
- },
- "40277": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderbottomrightradius"
- }
- ]
- },
- "40278": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/LayoutBase#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#borderbottomleftradius"
- }
- ]
- },
- "40279": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/LayoutBase#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#color"
- }
- ]
- },
- "40280": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessible"
- }
- ]
- },
- "40281": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityhidden"
- }
- ]
- },
- "40282": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityidentifier"
- }
- ]
- },
- "40283": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityrole"
- }
- ]
- },
- "40284": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilitystate"
- }
- ]
- },
- "40285": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilitylabel"
- }
- ]
- },
- "40286": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityvalue"
- }
- ]
- },
- "40287": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilityhint"
- }
- ]
- },
- "40288": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#accessibilityliveregion"
- }
- ]
- },
- "40289": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilitylanguage"
- }
- ]
- },
- "40290": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/LayoutBase#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/LayoutBase#accessibilitymediasession"
- }
- ]
- },
- "40291": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/LayoutBase#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/LayoutBase#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "40292": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/LayoutBase#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/LayoutBase#iosaccessibilityminfontscale"
- }
- ]
- },
- "40293": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/LayoutBase#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/LayoutBase#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "40294": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/LayoutBase#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/LayoutBase#androidcontentdescriptionupdated"
- }
- ]
- },
- "40295": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/LayoutBase#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#automationtext"
- }
- ]
- },
- "40296": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/LayoutBase#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#androidelevation"
- }
- ]
- },
- "40297": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/LayoutBase#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#androiddynamicelevationoffset"
- }
- ]
- },
- "40298": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/LayoutBase#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/LayoutBase#background"
- }
- ]
- },
- "40299": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/LayoutBase#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#backgroundcolor"
- }
- ]
- },
- "40300": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/LayoutBase#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#backgroundimage"
- }
- ]
- },
- "40301": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/LayoutBase#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#boxshadow"
- }
- ]
- },
- "40302": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/LayoutBase#minwidth"
- }
- ]
- },
- "40303": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/LayoutBase#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/LayoutBase#minheight"
- }
- ]
- },
- "40304": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/LayoutBase#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#width"
- }
- ]
- },
- "40305": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/LayoutBase#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#height"
- }
- ]
- },
- "40306": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/LayoutBase#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/LayoutBase#margin"
- }
- ]
- },
- "40307": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#marginleft"
- }
- ]
- },
- "40308": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#margintop"
- }
- ]
- },
- "40309": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/LayoutBase#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#marginright"
- }
- ]
- },
- "40310": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/LayoutBase#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#marginbottom"
- }
- ]
- },
- "40311": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/LayoutBase#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/LayoutBase#horizontalalignment"
- }
- ]
- },
- "40312": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/LayoutBase#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/LayoutBase#verticalalignment"
- }
- ]
- },
- "40313": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/LayoutBase#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#visibility"
- }
- ]
- },
- "40314": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/LayoutBase#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/LayoutBase#opacity"
- }
- ]
- },
- "40315": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/LayoutBase#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/LayoutBase#rotate"
- }
- ]
- },
- "40316": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/LayoutBase#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/LayoutBase#rotatex"
- }
- ]
- },
- "40317": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/LayoutBase#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/LayoutBase#rotatey"
- }
- ]
- },
- "40318": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/LayoutBase#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/LayoutBase#perspective"
- }
- ]
- },
- "40319": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/LayoutBase#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/LayoutBase#translatex"
- }
- ]
- },
- "40320": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/LayoutBase#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/LayoutBase#translatey"
- }
- ]
- },
- "40321": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/LayoutBase#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#scalex"
- }
- ]
- },
- "40322": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/LayoutBase#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#scaley"
- }
- ]
- },
- "40323": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/LayoutBase#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#originx"
- }
- ]
- },
- "40324": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/LayoutBase#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#originy"
- }
- ]
- },
- "40325": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/LayoutBase#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#isenabled"
- }
- ]
- },
- "40326": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/LayoutBase#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#isuserinteractionenabled"
- }
- ]
- },
- "40327": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/LayoutBase#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/LayoutBase#iosoverflowsafeareaenabled"
- }
- ]
- },
- "40328": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/LayoutBase#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/LayoutBase#iosignoresafearea"
- }
- ]
- },
- "40329": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/LayoutBase#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/LayoutBase#islayoutvalid"
- }
- ]
- },
- "40330": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/LayoutBase#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/LayoutBase#csstype"
- }
- ]
- },
- "40331": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/LayoutBase#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#cssclasses"
- }
- ]
- },
- "40332": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/LayoutBase#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#csspseudoclasses"
- }
- ]
- },
- "40333": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/LayoutBase#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/LayoutBase#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40337": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/LayoutBase#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/LayoutBase#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40344": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/LayoutBase#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/LayoutBase#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "40346": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/LayoutBase#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/LayoutBase#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "40348": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/LayoutBase#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/LayoutBase#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "40350": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/LayoutBase#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/LayoutBase#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40354": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/LayoutBase#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/LayoutBase#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40360": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/LayoutBase#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/LayoutBase#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40364": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/LayoutBase#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40370": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/LayoutBase#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/LayoutBase#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40372": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/LayoutBase#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/LayoutBase#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "40375": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/LayoutBase#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/LayoutBase#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "40383": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/LayoutBase#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/LayoutBase#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/LayoutBase#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/LayoutBase#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/LayoutBase#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/LayoutBase#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "40426": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/LayoutBase#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/LayoutBase#modal"
- }
- ]
- },
- "40427": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/LayoutBase#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/LayoutBase#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "40430": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/LayoutBase#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/LayoutBase#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "40433": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/LayoutBase#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/LayoutBase#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "40440": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/LayoutBase#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/LayoutBase#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "40442": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/LayoutBase#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/LayoutBase#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "40444": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/LayoutBase#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/LayoutBase#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "40447": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/LayoutBase#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/LayoutBase#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "40449": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/LayoutBase#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/LayoutBase#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40461": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/LayoutBase#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/LayoutBase#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "40463": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/LayoutBase#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/LayoutBase#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40465": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/LayoutBase#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/LayoutBase#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "40467": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/LayoutBase#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/LayoutBase#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40473": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/LayoutBase#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/LayoutBase#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40475": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/LayoutBase#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/LayoutBase#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40477": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/LayoutBase#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/LayoutBase#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40479": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/LayoutBase#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/LayoutBase#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40485": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/LayoutBase#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/LayoutBase#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40488": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/LayoutBase#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/LayoutBase#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40491": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/LayoutBase#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/LayoutBase#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40560": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/LayoutBase#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/LayoutBase#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40566": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/LayoutBase#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/LayoutBase#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40571": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/LayoutBase#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/LayoutBase#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40573": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/LayoutBase#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/LayoutBase#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40575": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/LayoutBase#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/LayoutBase#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40578": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/LayoutBase#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/LayoutBase#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "40581": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/LayoutBase#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/LayoutBase#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "40585": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/LayoutBase#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#testid"
- }
- ]
- },
- "40586": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/LayoutBase#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#touchanimation"
- }
- ]
- },
- "40587": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/LayoutBase#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#ignoretouchanimation"
- }
- ]
- },
- "40588": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/LayoutBase#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#touchdelay"
- }
- ]
- },
- "40589": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/LayoutBase#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#closemodalcallback"
- }
- ]
- },
- "40590": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/LayoutBase#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/LayoutBase#transitionid"
- }
- ]
- },
- "40591": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/LayoutBase#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#islayoutvalid"
- }
- ]
- },
- "40592": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/LayoutBase#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/LayoutBase#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40594": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/LayoutBase#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/LayoutBase#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40597": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/LayoutBase#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40605": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/LayoutBase#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40613": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/LayoutBase#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40621": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/LayoutBase#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/LayoutBase#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "40624": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/LayoutBase#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/LayoutBase#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40627": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/LayoutBase#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/LayoutBase#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40631": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/LayoutBase#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/LayoutBase#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40637": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/LayoutBase#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/LayoutBase#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40639": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/LayoutBase#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/LayoutBase#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40641": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/LayoutBase#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/LayoutBase#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40643": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/LayoutBase#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "40647": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/LayoutBase#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "40651": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/LayoutBase#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "40655": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/LayoutBase#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "40659": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/LayoutBase#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/LayoutBase#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40661": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/LayoutBase#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/LayoutBase#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40667": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/LayoutBase#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40669": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/LayoutBase#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/LayoutBase#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40673": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/LayoutBase#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#domnode"
- }
- ]
- },
- "40674": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/LayoutBase#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#recyclenativeview"
- }
- ]
- },
- "40675": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/LayoutBase#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/LayoutBase#viewcontroller"
- }
- ]
- },
- "40676": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/LayoutBase#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/LayoutBase#nativeviewprotected"
- }
- ]
- },
- "40677": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/LayoutBase#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/LayoutBase#parent"
- }
- ]
- },
- "40678": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/LayoutBase#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/LayoutBase#iscollapsed"
- }
- ]
- },
- "40679": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/LayoutBase#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#id"
- }
- ]
- },
- "40680": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/LayoutBase#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/LayoutBase#classname"
- }
- ]
- },
- "40681": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/LayoutBase#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/LayoutBase#sharedtransitiontag"
- }
- ]
- },
- "40682": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/LayoutBase#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/LayoutBase#sharedtransitionignore"
- }
- ]
- },
- "40683": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/LayoutBase#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#domid"
- }
- ]
- },
- "40684": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/LayoutBase#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#context"
- }
- ]
- },
- "40685": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/LayoutBase#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#isaddedtonativevisualtree"
- }
- ]
- },
- "40686": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/LayoutBase#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#cssstate"
- }
- ]
- },
- "40687": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/LayoutBase#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#stylescope"
- }
- ]
- },
- "40692": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/LayoutBase#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/LayoutBase#suspendnativeupdatescount"
- }
- ]
- },
- "40693": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/LayoutBase#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#isstylescopehost"
- }
- ]
- },
- "40694": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/LayoutBase#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "40695": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/LayoutBase#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#left"
- }
- ]
- },
- "40696": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/LayoutBase#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#top"
- }
- ]
- },
- "40697": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveleft"
- }
- ]
- },
- "40698": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivetop"
- }
- ]
- },
- "40699": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/LayoutBase#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#dock"
- }
- ]
- },
- "40700": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/LayoutBase#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#row"
- }
- ]
- },
- "40701": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/LayoutBase#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#col"
- }
- ]
- },
- "40702": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/LayoutBase#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#column"
- }
- ]
- },
- "40703": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/LayoutBase#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#rowspan"
- }
- ]
- },
- "40704": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/LayoutBase#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#colspan"
- }
- ]
- },
- "40705": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/LayoutBase#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#columnspan"
- }
- ]
- },
- "40706": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/LayoutBase#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#order"
- }
- ]
- },
- "40707": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/LayoutBase#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#flexgrow"
- }
- ]
- },
- "40708": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/LayoutBase#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#flexshrink"
- }
- ]
- },
- "40709": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/LayoutBase#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#flexwrapbefore"
- }
- ]
- },
- "40710": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/LayoutBase#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#alignself"
- }
- ]
- },
- "40711": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#oldleft"
- }
- ]
- },
- "40712": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#oldtop"
- }
- ]
- },
- "40713": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/LayoutBase#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#oldright"
- }
- ]
- },
- "40714": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/LayoutBase#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#oldbottom"
- }
- ]
- },
- "40715": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/LayoutBase#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#ignoreflexminwidthheightreset"
- }
- ]
- },
- "40716": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveminwidth"
- }
- ]
- },
- "40717": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveminheight"
- }
- ]
- },
- "40718": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivewidth"
- }
- ]
- },
- "40719": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveheight"
- }
- ]
- },
- "40720": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivemargintop"
- }
- ]
- },
- "40721": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivemarginright"
- }
- ]
- },
- "40722": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivemarginbottom"
- }
- ]
- },
- "40723": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivemarginleft"
- }
- ]
- },
- "40724": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivepaddingtop"
- }
- ]
- },
- "40725": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivepaddingright"
- }
- ]
- },
- "40726": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivepaddingbottom"
- }
- ]
- },
- "40727": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivepaddingleft"
- }
- ]
- },
- "40728": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectivebordertopwidth"
- }
- ]
- },
- "40729": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveborderrightwidth"
- }
- ]
- },
- "40730": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveborderbottomwidth"
- }
- ]
- },
- "40731": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/LayoutBase#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#effectiveborderleftwidth"
- }
- ]
- },
- "40732": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/LayoutBase#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#defaultpaddingtop"
- }
- ]
- },
- "40733": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/LayoutBase#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#defaultpaddingright"
- }
- ]
- },
- "40734": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/LayoutBase#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#defaultpaddingbottom"
- }
- ]
- },
- "40735": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/LayoutBase#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#defaultpaddingleft"
- }
- ]
- },
- "40736": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/LayoutBase#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/LayoutBase#ispaddingrelative"
- }
- ]
- },
- "40738": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/LayoutBase#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/LayoutBase#reusable"
- }
- ]
- },
- "40739": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/LayoutBase#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "40743": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/LayoutBase#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "40747": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/LayoutBase#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "40749": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/LayoutBase#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "40753": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/LayoutBase#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40755": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/LayoutBase#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "40759": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/LayoutBase#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/LayoutBase#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "40763": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/LayoutBase#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/LayoutBase#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "40767": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/LayoutBase#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/LayoutBase#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "40769": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/LayoutBase#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/LayoutBase#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40771": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/LayoutBase#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/LayoutBase#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40775": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/LayoutBase#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/LayoutBase#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40777": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/LayoutBase#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/LayoutBase#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40779": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/LayoutBase#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/LayoutBase#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40782": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/LayoutBase#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/LayoutBase#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40785": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/LayoutBase#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/LayoutBase#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "40791": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/LayoutBase#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/LayoutBase#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40793": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/LayoutBase#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/LayoutBase#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40795": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/LayoutBase#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/LayoutBase#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40798": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/LayoutBase#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/LayoutBase#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40801": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/LayoutBase#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/LayoutBase#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40805": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/LayoutBase#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/LayoutBase#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40808": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/LayoutBase#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/LayoutBase#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40812": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/LayoutBase#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/LayoutBase#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40816": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/LayoutBase#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/LayoutBase#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40819": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/LayoutBase#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/LayoutBase#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40821": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/LayoutBase#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/LayoutBase#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40824": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/LayoutBase#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40827": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/LayoutBase#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/LayoutBase#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40830": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/LayoutBase#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "40832": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/LayoutBase#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40834": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/LayoutBase#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40836": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/LayoutBase#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/LayoutBase#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40841": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/LayoutBase#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/LayoutBase#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40844": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/LayoutBase#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/LayoutBase#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40847": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/LayoutBase#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/LayoutBase#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40850": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/LayoutBase#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/LayoutBase#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "40853": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/LayoutBase#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/LayoutBase#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40857": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/LayoutBase#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/LayoutBase#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40860": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/LayoutBase#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/LayoutBase#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40864": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/LayoutBase#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/LayoutBase#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40867": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/LayoutBase#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/LayoutBase#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40870": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/LayoutBase#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/LayoutBase#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40872": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/LayoutBase#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/LayoutBase#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "40876": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/LayoutBase#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/LayoutBase#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40879": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/LayoutBase#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/LayoutBase#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40881": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/LayoutBase#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/LayoutBase#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40884": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/LayoutBase#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/LayoutBase#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "40887": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/LayoutBase#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/LayoutBase#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40891": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/LayoutBase#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/LayoutBase#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40899": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/LayoutBase#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/LayoutBase#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40903": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/LayoutBase#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/LayoutBase#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40908": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/LayoutBase#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/LayoutBase#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40911": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/LayoutBase#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/LayoutBase#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "40916": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/LayoutBase#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/LayoutBase#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/LayoutBase.md b/content/api/class/LayoutBase.md
deleted file mode 100644
index 9047cb10..00000000
--- a/content/api/class/LayoutBase.md
+++ /dev/null
@@ -1,290 +0,0 @@
----
-title: LayoutBase
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'LayoutBase'
-layout: api
-seo:
- description: "Base class for all views that supports children positioning."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ListPicker#layoutchangedevent"
- }
- ]
- },
- "16582": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ListPicker#showingmodallyevent"
- }
- ]
- },
- "16583": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ListPicker#shownmodallyevent"
- }
- ]
- },
- "16584": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityblurevent"
- }
- ]
- },
- "16585": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityfocusevent"
- }
- ]
- },
- "16586": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityfocuschangedevent"
- }
- ]
- },
- "16587": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ListPicker#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ListPicker#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "16596": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ListPicker#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ListPicker#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16604": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ListPicker#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ListPicker#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "16610": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ListPicker#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ListPicker#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "16614": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#accessibilityperformescapeevent"
- }
- ]
- },
- "16615": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ListPicker#loadedevent"
- }
- ]
- },
- "16616": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ListPicker#unloadedevent"
- }
- ]
- },
- "16617": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ListPicker#createdevent"
- }
- ]
- },
- "16618": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ListPicker#disposenativeviewevent"
- }
- ]
- },
- "16619": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ListPicker#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ListPicker#propertychangeevent"
- }
- ]
- },
- "16620": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ListPicker#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16628": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ListPicker#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16636": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ListPicker#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16644": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ListPicker#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16652": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ListPicker#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16660": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ListPicker#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ListPicker(): ListPicker",
- "url": "/api/class/ListPicker#constructor-new-listpicker",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "ListPicker"
- }
- ]
- },
- "16662": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ListPicker#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android.widget.NumberPicker](http://developer.android.com/reference/android/widget/NumberPicker.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-picker/index.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android.widget.NumberPicker](http://developer.android.com/reference/android/widget/NumberPicker.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/ListPicker#android"
- }
- ]
- },
- "16663": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ListPicker#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIPickerView](http://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIDatePicker_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-picker/index.d.ts",
- "line": 17,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIPickerView](http://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIDatePicker_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/ListPicker#ios"
- }
- ]
- },
- "16664": {
- "name": "selectedIndex",
- "type": "Property",
- "url": "/api/class/ListPicker#selectedindex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selected index."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "selectedIndex: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-picker/index.d.ts",
- "line": 22,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selected index."
- }
- ]
- },
- "url": "/api/class/ListPicker#selectedindex"
- }
- ]
- },
- "16665": {
- "name": "items",
- "type": "Property",
- "url": "/api/class/ListPicker#items",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items collection of the ListPicker.\nThe items property can be set to an array or an object defining length and getItem(index) method."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "items: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-picker/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items collection of the ListPicker.\nThe items property can be set to an array or an object defining length and getItem(index) method."
- }
- ]
- },
- "url": "/api/class/ListPicker#items"
- }
- ]
- },
- "16666": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ListPicker#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ListPicker#bindingcontext"
- }
- ]
- },
- "16667": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ListPicker#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#bordercolor"
- }
- ]
- },
- "16668": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ListPicker#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#bordertopcolor"
- }
- ]
- },
- "16669": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ListPicker#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderrightcolor"
- }
- ]
- },
- "16670": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ListPicker#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderbottomcolor"
- }
- ]
- },
- "16671": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ListPicker#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderleftcolor"
- }
- ]
- },
- "16672": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderwidth"
- }
- ]
- },
- "16673": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#bordertopwidth"
- }
- ]
- },
- "16674": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderrightwidth"
- }
- ]
- },
- "16675": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderbottomwidth"
- }
- ]
- },
- "16676": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderleftwidth"
- }
- ]
- },
- "16677": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ListPicker#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderradius"
- }
- ]
- },
- "16678": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ListPicker#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#bordertopleftradius"
- }
- ]
- },
- "16679": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ListPicker#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#bordertoprightradius"
- }
- ]
- },
- "16680": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ListPicker#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderbottomrightradius"
- }
- ]
- },
- "16681": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ListPicker#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#borderbottomleftradius"
- }
- ]
- },
- "16682": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ListPicker#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#color"
- }
- ]
- },
- "16683": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ListPicker#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessible"
- }
- ]
- },
- "16684": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityhidden"
- }
- ]
- },
- "16685": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityidentifier"
- }
- ]
- },
- "16686": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityrole"
- }
- ]
- },
- "16687": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilitystate"
- }
- ]
- },
- "16688": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilitylabel"
- }
- ]
- },
- "16689": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityvalue"
- }
- ]
- },
- "16690": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilityhint"
- }
- ]
- },
- "16691": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#accessibilityliveregion"
- }
- ]
- },
- "16692": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilitylanguage"
- }
- ]
- },
- "16693": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ListPicker#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ListPicker#accessibilitymediasession"
- }
- ]
- },
- "16694": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ListPicker#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ListPicker#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "16695": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ListPicker#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ListPicker#iosaccessibilityminfontscale"
- }
- ]
- },
- "16696": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ListPicker#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ListPicker#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "16697": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ListPicker#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ListPicker#androidcontentdescriptionupdated"
- }
- ]
- },
- "16698": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ListPicker#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#automationtext"
- }
- ]
- },
- "16699": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ListPicker#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ListPicker#androidelevation"
- }
- ]
- },
- "16700": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ListPicker#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ListPicker#androiddynamicelevationoffset"
- }
- ]
- },
- "16701": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ListPicker#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ListPicker#background"
- }
- ]
- },
- "16702": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ListPicker#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#backgroundcolor"
- }
- ]
- },
- "16703": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ListPicker#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#backgroundimage"
- }
- ]
- },
- "16704": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ListPicker#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#boxshadow"
- }
- ]
- },
- "16705": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ListPicker#minwidth"
- }
- ]
- },
- "16706": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ListPicker#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ListPicker#minheight"
- }
- ]
- },
- "16707": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ListPicker#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#width"
- }
- ]
- },
- "16708": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ListPicker#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#height"
- }
- ]
- },
- "16709": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ListPicker#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ListPicker#margin"
- }
- ]
- },
- "16710": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ListPicker#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ListPicker#marginleft"
- }
- ]
- },
- "16711": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ListPicker#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ListPicker#margintop"
- }
- ]
- },
- "16712": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ListPicker#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ListPicker#marginright"
- }
- ]
- },
- "16713": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ListPicker#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ListPicker#marginbottom"
- }
- ]
- },
- "16714": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ListPicker#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ListPicker#horizontalalignment"
- }
- ]
- },
- "16715": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ListPicker#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ListPicker#verticalalignment"
- }
- ]
- },
- "16716": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ListPicker#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#visibility"
- }
- ]
- },
- "16717": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ListPicker#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ListPicker#opacity"
- }
- ]
- },
- "16718": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ListPicker#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ListPicker#rotate"
- }
- ]
- },
- "16719": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ListPicker#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ListPicker#rotatex"
- }
- ]
- },
- "16720": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ListPicker#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ListPicker#rotatey"
- }
- ]
- },
- "16721": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ListPicker#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ListPicker#perspective"
- }
- ]
- },
- "16722": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ListPicker#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ListPicker#translatex"
- }
- ]
- },
- "16723": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ListPicker#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ListPicker#translatey"
- }
- ]
- },
- "16724": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ListPicker#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#scalex"
- }
- ]
- },
- "16725": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ListPicker#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#scaley"
- }
- ]
- },
- "16726": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ListPicker#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#originx"
- }
- ]
- },
- "16727": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ListPicker#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#originy"
- }
- ]
- },
- "16728": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ListPicker#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#isenabled"
- }
- ]
- },
- "16729": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ListPicker#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ListPicker#isuserinteractionenabled"
- }
- ]
- },
- "16730": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ListPicker#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ListPicker#iosoverflowsafearea"
- }
- ]
- },
- "16731": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ListPicker#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ListPicker#iosoverflowsafeareaenabled"
- }
- ]
- },
- "16732": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ListPicker#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ListPicker#iosignoresafearea"
- }
- ]
- },
- "16733": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ListPicker#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ListPicker#islayoutvalid"
- }
- ]
- },
- "16734": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ListPicker#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ListPicker#csstype"
- }
- ]
- },
- "16735": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ListPicker#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#cssclasses"
- }
- ]
- },
- "16736": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ListPicker#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#csspseudoclasses"
- }
- ]
- },
- "16737": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ListPicker#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ListPicker#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16741": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ListPicker#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ListPicker#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16748": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ListPicker#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ListPicker#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16750": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ListPicker#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ListPicker#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16752": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ListPicker#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ListPicker#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16754": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ListPicker#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ListPicker#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16758": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ListPicker#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ListPicker#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16764": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ListPicker#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ListPicker#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16768": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ListPicker#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ListPicker#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16774": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ListPicker#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ListPicker#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16776": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ListPicker#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ListPicker#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "16779": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ListPicker#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ListPicker#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "16787": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ListPicker#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ListPicker#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ListPicker#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ListPicker#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ListPicker#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/ListPicker#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "16830": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ListPicker#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ListPicker#modal"
- }
- ]
- },
- "16831": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ListPicker#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ListPicker#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "16834": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ListPicker#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ListPicker#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "16837": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ListPicker#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ListPicker#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "16844": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ListPicker#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ListPicker#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "16846": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ListPicker#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ListPicker#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "16848": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ListPicker#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ListPicker#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "16851": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ListPicker#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ListPicker#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "16853": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ListPicker#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ListPicker#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16865": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ListPicker#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ListPicker#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "16867": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ListPicker#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ListPicker#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16869": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ListPicker#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ListPicker#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "16871": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ListPicker#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ListPicker#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16877": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ListPicker#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ListPicker#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16879": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ListPicker#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ListPicker#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "16881": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ListPicker#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ListPicker#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16883": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ListPicker#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ListPicker#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16889": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ListPicker#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ListPicker#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16892": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ListPicker#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ListPicker#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16895": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ListPicker#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ListPicker#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16964": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ListPicker#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ListPicker#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16970": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ListPicker#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ListPicker#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "16975": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ListPicker#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ListPicker#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16977": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ListPicker#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ListPicker#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16979": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ListPicker#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ListPicker#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "16982": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ListPicker#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ListPicker#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "16985": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ListPicker#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ListPicker#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "16989": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ListPicker#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#testid"
- }
- ]
- },
- "16990": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ListPicker#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#touchanimation"
- }
- ]
- },
- "16991": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ListPicker#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#ignoretouchanimation"
- }
- ]
- },
- "16992": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ListPicker#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#touchdelay"
- }
- ]
- },
- "16993": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ListPicker#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#closemodalcallback"
- }
- ]
- },
- "16994": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ListPicker#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ListPicker#transitionid"
- }
- ]
- },
- "16995": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ListPicker#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#islayoutvalid"
- }
- ]
- },
- "16996": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ListPicker#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ListPicker#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "16998": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ListPicker#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ListPicker#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17001": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ListPicker#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17009": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ListPicker#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17017": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ListPicker#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17025": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ListPicker#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ListPicker#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "17028": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ListPicker#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ListPicker#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17031": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ListPicker#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ListPicker#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17035": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ListPicker#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ListPicker#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17041": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ListPicker#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ListPicker#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17043": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ListPicker#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ListPicker#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17045": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ListPicker#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ListPicker#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17047": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ListPicker#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ListPicker#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17051": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ListPicker#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ListPicker#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17055": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ListPicker#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ListPicker#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "17059": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ListPicker#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ListPicker#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "17063": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ListPicker#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ListPicker#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17065": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ListPicker#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ListPicker#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17071": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ListPicker#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ListPicker#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17073": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ListPicker#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ListPicker#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17077": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ListPicker#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#domnode"
- }
- ]
- },
- "17078": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ListPicker#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#recyclenativeview"
- }
- ]
- },
- "17079": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ListPicker#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ListPicker#viewcontroller"
- }
- ]
- },
- "17080": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ListPicker#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ListPicker#nativeviewprotected"
- }
- ]
- },
- "17081": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ListPicker#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ListPicker#parent"
- }
- ]
- },
- "17082": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ListPicker#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ListPicker#iscollapsed"
- }
- ]
- },
- "17083": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ListPicker#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ListPicker#id"
- }
- ]
- },
- "17084": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ListPicker#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ListPicker#classname"
- }
- ]
- },
- "17085": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ListPicker#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ListPicker#sharedtransitiontag"
- }
- ]
- },
- "17086": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ListPicker#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ListPicker#sharedtransitionignore"
- }
- ]
- },
- "17087": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ListPicker#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#domid"
- }
- ]
- },
- "17088": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ListPicker#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#context"
- }
- ]
- },
- "17089": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ListPicker#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#isaddedtonativevisualtree"
- }
- ]
- },
- "17090": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ListPicker#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#cssstate"
- }
- ]
- },
- "17091": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ListPicker#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#stylescope"
- }
- ]
- },
- "17096": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ListPicker#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ListPicker#suspendnativeupdatescount"
- }
- ]
- },
- "17097": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ListPicker#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#isstylescopehost"
- }
- ]
- },
- "17098": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ListPicker#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "17099": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ListPicker#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#left"
- }
- ]
- },
- "17100": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ListPicker#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#top"
- }
- ]
- },
- "17101": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveleft"
- }
- ]
- },
- "17102": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivetop"
- }
- ]
- },
- "17103": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ListPicker#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#dock"
- }
- ]
- },
- "17104": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ListPicker#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#row"
- }
- ]
- },
- "17105": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ListPicker#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#col"
- }
- ]
- },
- "17106": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ListPicker#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#column"
- }
- ]
- },
- "17107": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ListPicker#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#rowspan"
- }
- ]
- },
- "17108": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ListPicker#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#colspan"
- }
- ]
- },
- "17109": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ListPicker#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#columnspan"
- }
- ]
- },
- "17110": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ListPicker#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#order"
- }
- ]
- },
- "17111": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ListPicker#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#flexgrow"
- }
- ]
- },
- "17112": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ListPicker#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#flexshrink"
- }
- ]
- },
- "17113": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ListPicker#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#flexwrapbefore"
- }
- ]
- },
- "17114": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ListPicker#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#alignself"
- }
- ]
- },
- "17115": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ListPicker#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#oldleft"
- }
- ]
- },
- "17116": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ListPicker#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#oldtop"
- }
- ]
- },
- "17117": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ListPicker#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#oldright"
- }
- ]
- },
- "17118": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ListPicker#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#oldbottom"
- }
- ]
- },
- "17119": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ListPicker#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#ignoreflexminwidthheightreset"
- }
- ]
- },
- "17120": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveminwidth"
- }
- ]
- },
- "17121": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveminheight"
- }
- ]
- },
- "17122": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivewidth"
- }
- ]
- },
- "17123": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveheight"
- }
- ]
- },
- "17124": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivemargintop"
- }
- ]
- },
- "17125": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivemarginright"
- }
- ]
- },
- "17126": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivemarginbottom"
- }
- ]
- },
- "17127": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivemarginleft"
- }
- ]
- },
- "17128": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivepaddingtop"
- }
- ]
- },
- "17129": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivepaddingright"
- }
- ]
- },
- "17130": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivepaddingbottom"
- }
- ]
- },
- "17131": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivepaddingleft"
- }
- ]
- },
- "17132": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectivebordertopwidth"
- }
- ]
- },
- "17133": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveborderrightwidth"
- }
- ]
- },
- "17134": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveborderbottomwidth"
- }
- ]
- },
- "17135": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ListPicker#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#effectiveborderleftwidth"
- }
- ]
- },
- "17136": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ListPicker#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#defaultpaddingtop"
- }
- ]
- },
- "17137": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ListPicker#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#defaultpaddingright"
- }
- ]
- },
- "17138": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ListPicker#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#defaultpaddingbottom"
- }
- ]
- },
- "17139": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ListPicker#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#defaultpaddingleft"
- }
- ]
- },
- "17140": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ListPicker#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListPicker#ispaddingrelative"
- }
- ]
- },
- "17142": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ListPicker#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ListPicker#reusable"
- }
- ]
- },
- "17143": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ListPicker#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ListPicker#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "17147": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ListPicker#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ListPicker#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "17151": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ListPicker#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ListPicker#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17153": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ListPicker#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ListPicker#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "17157": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ListPicker#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ListPicker#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17159": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ListPicker#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ListPicker#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17163": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ListPicker#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ListPicker#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "17167": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ListPicker#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ListPicker#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "17171": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ListPicker#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ListPicker#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "17173": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ListPicker#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ListPicker#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17175": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ListPicker#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ListPicker#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17179": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ListPicker#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ListPicker#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17181": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ListPicker#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ListPicker#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17183": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ListPicker#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ListPicker#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17186": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ListPicker#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ListPicker#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17189": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ListPicker#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ListPicker#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "17195": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ListPicker#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ListPicker#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17197": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ListPicker#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ListPicker#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17199": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ListPicker#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ListPicker#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17202": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ListPicker#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ListPicker#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17205": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ListPicker#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ListPicker#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17209": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ListPicker#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ListPicker#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17212": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ListPicker#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ListPicker#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17216": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ListPicker#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ListPicker#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17220": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ListPicker#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ListPicker#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17223": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ListPicker#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ListPicker#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17225": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ListPicker#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ListPicker#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17228": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ListPicker#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ListPicker#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17231": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ListPicker#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ListPicker#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17234": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ListPicker#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ListPicker#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "17236": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ListPicker#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ListPicker#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17238": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ListPicker#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ListPicker#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17240": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ListPicker#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ListPicker#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17245": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ListPicker#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ListPicker#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17248": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ListPicker#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ListPicker#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17251": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ListPicker#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ListPicker#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17254": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ListPicker#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ListPicker#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "17257": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ListPicker#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ListPicker#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "17261": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ListPicker#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ListPicker#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17264": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ListPicker#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ListPicker#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "17268": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ListPicker#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ListPicker#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17271": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ListPicker#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ListPicker#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17274": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ListPicker#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ListPicker#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17276": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ListPicker#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ListPicker#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17280": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ListPicker#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ListPicker#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17283": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ListPicker#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ListPicker#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17285": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ListPicker#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ListPicker#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17288": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ListPicker#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ListPicker#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "17291": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ListPicker#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ListPicker#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17295": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ListPicker#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListPicker#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17303": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ListPicker#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ListPicker#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17307": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ListPicker#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ListPicker#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17312": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ListPicker#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ListPicker#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "17315": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ListPicker#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ListPicker#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "17320": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ListPicker#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ListPicker#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ListPicker.md b/content/api/class/ListPicker.md
deleted file mode 100644
index 21d18fd4..00000000
--- a/content/api/class/ListPicker.md
+++ /dev/null
@@ -1,106 +0,0 @@
----
-title: ListPicker
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ListPicker'
-layout: api
-seo:
- description: "Represents an list picker."
----
-
-
-
-
-
-
-itemLoadingEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 16,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to itemLoading event."
- }
- ]
- },
- "url": "/api/class/ListView#itemloadingevent"
- }
- ]
- },
- "17325": {
- "name": "itemTapEvent",
- "type": "Property",
- "url": "/api/class/ListView#itemtapevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to itemTap event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "itemTapEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 20,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to itemTap event."
- }
- ]
- },
- "url": "/api/class/ListView#itemtapevent"
- }
- ]
- },
- "17326": {
- "name": "loadMoreItemsEvent",
- "type": "Property",
- "url": "/api/class/ListView#loadmoreitemsevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loadMoreItems event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "loadMoreItemsEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 24,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loadMoreItems event."
- }
- ]
- },
- "url": "/api/class/ListView#loadmoreitemsevent"
- }
- ]
- },
- "17327": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/ListView#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ListView#layoutchangedevent"
- }
- ]
- },
- "17328": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ListView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ListView#showingmodallyevent"
- }
- ]
- },
- "17329": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ListView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ListView#shownmodallyevent"
- }
- ]
- },
- "17330": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityblurevent"
- }
- ]
- },
- "17331": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityfocusevent"
- }
- ]
- },
- "17332": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityfocuschangedevent"
- }
- ]
- },
- "17333": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ListView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ListView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "17342": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ListView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ListView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17350": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ListView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ListView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "17356": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ListView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ListView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "17360": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#accessibilityperformescapeevent"
- }
- ]
- },
- "17361": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ListView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ListView#loadedevent"
- }
- ]
- },
- "17362": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ListView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ListView#unloadedevent"
- }
- ]
- },
- "17363": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ListView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ListView#createdevent"
- }
- ]
- },
- "17364": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ListView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ListView#disposenativeviewevent"
- }
- ]
- },
- "17365": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ListView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ListView#propertychangeevent"
- }
- ]
- },
- "17366": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ListView#on-5",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#on-5-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17374": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ListView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17382": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ListView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17390": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ListView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17398": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ListView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17406": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ListView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ListView(): ListView",
- "url": "/api/class/ListView#constructor-new-listview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "ListView"
- }
- ]
- },
- "17408": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ListView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ListView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ListView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/ListView#android"
- }
- ]
- },
- "17409": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ListView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [iOS view](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableView_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [iOS view](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableView_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/ListView#ios"
- }
- ]
- },
- "17410": {
- "name": "items",
- "type": "Property",
- "url": "/api/class/ListView#items",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items collection of the ListView.\nThe items property can be set to an array or an object defining length and getItem(index) method."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "items: any[] | ItemsSource",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items collection of the ListView.\nThe items property can be set to an array or an object defining length and getItem(index) method."
- }
- ]
- },
- "url": "/api/class/ListView#items"
- }
- ]
- },
- "17411": {
- "name": "itemTemplate",
- "type": "Property",
- "url": "/api/class/ListView#itemtemplate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the item template of the ListView."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemTemplate: string | Template",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 45,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the item template of the ListView."
- }
- ]
- },
- "url": "/api/class/ListView#itemtemplate"
- }
- ]
- },
- "17412": {
- "name": "itemTemplates",
- "type": "Property",
- "url": "/api/class/ListView#itemtemplates",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the list of item templates for the item template selector"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemTemplates: string | KeyedTemplate[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the list of item templates for the item template selector"
- }
- ]
- },
- "url": "/api/class/ListView#itemtemplates"
- }
- ]
- },
- "17413": {
- "name": "itemTemplateSelector",
- "type": "Property",
- "url": "/api/class/ListView#itemtemplateselector",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that returns the appropriate ket template based on the data item."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemTemplateSelector: string | (item: any, index: number, items: any) => string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 55,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that returns the appropriate ket template based on the data item."
- }
- ]
- },
- "url": "/api/class/ListView#itemtemplateselector"
- }
- ]
- },
- "17419": {
- "name": "itemIdGenerator",
- "type": "Property",
- "url": "/api/class/ListView#itemidgenerator",
- "flags": {},
- "signatures": [
- {
- "code": "itemIdGenerator: (item: any, index: number, items: any) => number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 60,
- "character": 1
- }
- ],
- "url": "/api/class/ListView#itemidgenerator"
- }
- ]
- },
- "17425": {
- "name": "separatorColor",
- "type": "Property",
- "url": "/api/class/ListView#separatorcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items separator line color of the ListView."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "separatorColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 65,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items separator line color of the ListView."
- }
- ]
- },
- "url": "/api/class/ListView#separatorcolor"
- }
- ]
- },
- "17426": {
- "name": "rowHeight",
- "type": "Property",
- "url": "/api/class/ListView#rowheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set row height of the ListView."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "rowHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set row height of the ListView."
- }
- ]
- },
- "url": "/api/class/ListView#rowheight"
- }
- ]
- },
- "17427": {
- "name": "iosEstimatedRowHeight",
- "type": "Property",
- "url": "/api/class/ListView#iosestimatedrowheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the estimated height of rows in the ListView.\nThe default value is 44px."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosEstimatedRowHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 76,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the estimated height of rows in the ListView.\nThe default value is 44px."
- }
- ]
- },
- "url": "/api/class/ListView#iosestimatedrowheight"
- }
- ]
- },
- "17428": {
- "name": "refresh",
- "type": "Method",
- "url": "/api/class/ListView#refresh",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "refresh(): any",
- "url": "/api/class/ListView#refresh-refresh-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 81,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Forces the ListView to reload all its items."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "17430": {
- "name": "scrollToIndex",
- "type": "Method",
- "url": "/api/class/ListView#scrolltoindex",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "scrollToIndex(index: number): any",
- "url": "/api/class/ListView#scrolltoindex-scrolltoindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Scrolls the specified item with index into view.\n[iOS](https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UITableView_Class/#//apple_ref/occ/instm/UITableView/scrollToRowAtIndexPath:atScrollPosition:animated:)\n[Android](http://developer.android.com/reference/android/widget/ListView.html#setSelection(int))"
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Item index."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "17433": {
- "name": "scrollToIndexAnimated",
- "type": "Method",
- "url": "/api/class/ListView#scrolltoindexanimated",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "scrollToIndexAnimated(index: number): any",
- "url": "/api/class/ListView#scrolltoindexanimated-scrolltoindexanimated-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 97,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Scrolls the specified item with index into view with animation.\n[iOS](https://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UITableView_Class/#//apple_ref/occ/instm/UITableView/scrollToRowAtIndexPath:atScrollPosition:animated:)\n[Android](https://developer.android.com/reference/android/widget/ListView.html#smoothScrollToPosition(int))"
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Item index."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "17436": {
- "name": "isItemAtIndexVisible",
- "type": "Method",
- "url": "/api/class/ListView#isitematindexvisible",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isItemAtIndexVisible(index: number): boolean",
- "url": "/api/class/ListView#isitematindexvisible-isitematindexvisible-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks if Specified item with index is visible."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Item index."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "17439": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ListView#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 111,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"itemLoading\", callback: (args: ItemEventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 119,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a View for the data at the specified index should be created.\nThe result should be returned trough the view property of the event data.\nNote, that the view property of the event data can be pre-initialized with\nan old instance of a view, so that it can be reused."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"itemLoading\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ItemEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"itemTap\", callback: (args: ItemEventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 124,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an item inside the ListView is tapped."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"itemTap\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ItemEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loadMoreItems\", callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/list-view/index.d.ts",
- "line": 129,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when the ListView is scrolled so that its last item is visible."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loadMoreItems\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17468": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ListView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ListView#bindingcontext"
- }
- ]
- },
- "17469": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ListView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#bordercolor"
- }
- ]
- },
- "17470": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ListView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#bordertopcolor"
- }
- ]
- },
- "17471": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ListView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderrightcolor"
- }
- ]
- },
- "17472": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ListView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderbottomcolor"
- }
- ]
- },
- "17473": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ListView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderleftcolor"
- }
- ]
- },
- "17474": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ListView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderwidth"
- }
- ]
- },
- "17475": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ListView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ListView#bordertopwidth"
- }
- ]
- },
- "17476": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ListView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderrightwidth"
- }
- ]
- },
- "17477": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ListView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderbottomwidth"
- }
- ]
- },
- "17478": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ListView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderleftwidth"
- }
- ]
- },
- "17479": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ListView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderradius"
- }
- ]
- },
- "17480": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ListView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListView#bordertopleftradius"
- }
- ]
- },
- "17481": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ListView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListView#bordertoprightradius"
- }
- ]
- },
- "17482": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ListView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderbottomrightradius"
- }
- ]
- },
- "17483": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ListView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ListView#borderbottomleftradius"
- }
- ]
- },
- "17484": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ListView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#color"
- }
- ]
- },
- "17485": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ListView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ListView#accessible"
- }
- ]
- },
- "17486": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityhidden"
- }
- ]
- },
- "17487": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityidentifier"
- }
- ]
- },
- "17488": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityrole"
- }
- ]
- },
- "17489": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ListView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ListView#accessibilitystate"
- }
- ]
- },
- "17490": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ListView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilitylabel"
- }
- ]
- },
- "17491": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityvalue"
- }
- ]
- },
- "17492": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ListView#accessibilityhint"
- }
- ]
- },
- "17493": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ListView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#accessibilityliveregion"
- }
- ]
- },
- "17494": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ListView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ListView#accessibilitylanguage"
- }
- ]
- },
- "17495": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ListView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ListView#accessibilitymediasession"
- }
- ]
- },
- "17496": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ListView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ListView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "17497": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ListView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ListView#iosaccessibilityminfontscale"
- }
- ]
- },
- "17498": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ListView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ListView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "17499": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ListView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ListView#androidcontentdescriptionupdated"
- }
- ]
- },
- "17500": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ListView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#automationtext"
- }
- ]
- },
- "17501": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ListView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ListView#androidelevation"
- }
- ]
- },
- "17502": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ListView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ListView#androiddynamicelevationoffset"
- }
- ]
- },
- "17503": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ListView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ListView#background"
- }
- ]
- },
- "17504": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ListView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ListView#backgroundcolor"
- }
- ]
- },
- "17505": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ListView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ListView#backgroundimage"
- }
- ]
- },
- "17506": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ListView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ListView#boxshadow"
- }
- ]
- },
- "17507": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ListView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ListView#minwidth"
- }
- ]
- },
- "17508": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ListView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ListView#minheight"
- }
- ]
- },
- "17509": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ListView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ListView#width"
- }
- ]
- },
- "17510": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ListView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ListView#height"
- }
- ]
- },
- "17511": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ListView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ListView#margin"
- }
- ]
- },
- "17512": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ListView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ListView#marginleft"
- }
- ]
- },
- "17513": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ListView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ListView#margintop"
- }
- ]
- },
- "17514": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ListView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ListView#marginright"
- }
- ]
- },
- "17515": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ListView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ListView#marginbottom"
- }
- ]
- },
- "17516": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ListView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ListView#horizontalalignment"
- }
- ]
- },
- "17517": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ListView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ListView#verticalalignment"
- }
- ]
- },
- "17518": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ListView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ListView#visibility"
- }
- ]
- },
- "17519": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ListView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ListView#opacity"
- }
- ]
- },
- "17520": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ListView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ListView#rotate"
- }
- ]
- },
- "17521": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ListView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ListView#rotatex"
- }
- ]
- },
- "17522": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ListView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ListView#rotatey"
- }
- ]
- },
- "17523": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ListView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ListView#perspective"
- }
- ]
- },
- "17524": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ListView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ListView#translatex"
- }
- ]
- },
- "17525": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ListView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ListView#translatey"
- }
- ]
- },
- "17526": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ListView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ListView#scalex"
- }
- ]
- },
- "17527": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ListView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ListView#scaley"
- }
- ]
- },
- "17528": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ListView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ListView#originx"
- }
- ]
- },
- "17529": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ListView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ListView#originy"
- }
- ]
- },
- "17530": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ListView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ListView#isenabled"
- }
- ]
- },
- "17531": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ListView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ListView#isuserinteractionenabled"
- }
- ]
- },
- "17532": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ListView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ListView#iosoverflowsafearea"
- }
- ]
- },
- "17533": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ListView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ListView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "17534": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ListView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ListView#iosignoresafearea"
- }
- ]
- },
- "17535": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ListView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ListView#islayoutvalid"
- }
- ]
- },
- "17536": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ListView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ListView#csstype"
- }
- ]
- },
- "17537": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ListView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#cssclasses"
- }
- ]
- },
- "17538": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ListView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#csspseudoclasses"
- }
- ]
- },
- "17539": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ListView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ListView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17543": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ListView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ListView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17550": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ListView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ListView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "17552": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ListView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ListView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "17554": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ListView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ListView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "17556": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ListView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ListView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17560": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ListView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ListView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17566": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ListView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ListView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17570": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ListView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ListView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17576": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ListView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ListView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17578": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ListView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ListView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "17581": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ListView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ListView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "17589": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ListView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ListView#modal"
- }
- ]
- },
- "17590": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ListView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ListView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "17593": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ListView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ListView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "17596": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ListView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ListView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "17603": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ListView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ListView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "17605": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ListView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ListView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "17607": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ListView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ListView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "17610": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ListView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ListView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "17612": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ListView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ListView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17624": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ListView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ListView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "17626": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ListView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ListView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17628": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ListView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ListView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "17630": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ListView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ListView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17636": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ListView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ListView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17638": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ListView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ListView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17640": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ListView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ListView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17642": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ListView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ListView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17648": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ListView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ListView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17651": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ListView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ListView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17654": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ListView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ListView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17723": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ListView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ListView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "17729": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ListView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ListView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17734": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ListView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ListView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17736": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ListView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ListView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17738": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ListView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ListView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "17741": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ListView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ListView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "17744": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ListView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ListView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "17748": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ListView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#testid"
- }
- ]
- },
- "17749": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ListView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#touchanimation"
- }
- ]
- },
- "17750": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ListView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#ignoretouchanimation"
- }
- ]
- },
- "17751": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ListView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#touchdelay"
- }
- ]
- },
- "17752": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ListView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#closemodalcallback"
- }
- ]
- },
- "17753": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ListView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ListView#transitionid"
- }
- ]
- },
- "17754": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ListView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#islayoutvalid"
- }
- ]
- },
- "17755": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ListView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ListView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17757": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ListView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ListView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17760": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ListView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17768": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ListView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17776": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ListView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17784": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ListView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ListView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "17787": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ListView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ListView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17790": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ListView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ListView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17794": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ListView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ListView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17800": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ListView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ListView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17802": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ListView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ListView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17804": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ListView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ListView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17806": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ListView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ListView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17810": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ListView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ListView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17814": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ListView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ListView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "17818": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ListView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ListView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "17822": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ListView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ListView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17824": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ListView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ListView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17830": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ListView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ListView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17832": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ListView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ListView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17836": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ListView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#domnode"
- }
- ]
- },
- "17837": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ListView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#recyclenativeview"
- }
- ]
- },
- "17838": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ListView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ListView#viewcontroller"
- }
- ]
- },
- "17839": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ListView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ListView#nativeviewprotected"
- }
- ]
- },
- "17840": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ListView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ListView#parent"
- }
- ]
- },
- "17841": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ListView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ListView#iscollapsed"
- }
- ]
- },
- "17842": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ListView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ListView#id"
- }
- ]
- },
- "17843": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ListView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ListView#classname"
- }
- ]
- },
- "17844": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ListView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ListView#sharedtransitiontag"
- }
- ]
- },
- "17845": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ListView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ListView#sharedtransitionignore"
- }
- ]
- },
- "17846": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ListView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#domid"
- }
- ]
- },
- "17847": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ListView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#context"
- }
- ]
- },
- "17848": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ListView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#isaddedtonativevisualtree"
- }
- ]
- },
- "17849": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ListView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#cssstate"
- }
- ]
- },
- "17850": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ListView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#stylescope"
- }
- ]
- },
- "17855": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ListView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ListView#suspendnativeupdatescount"
- }
- ]
- },
- "17856": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ListView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#isstylescopehost"
- }
- ]
- },
- "17857": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ListView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "17858": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ListView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#left"
- }
- ]
- },
- "17859": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ListView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#top"
- }
- ]
- },
- "17860": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ListView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveleft"
- }
- ]
- },
- "17861": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ListView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivetop"
- }
- ]
- },
- "17862": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ListView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#dock"
- }
- ]
- },
- "17863": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ListView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#row"
- }
- ]
- },
- "17864": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ListView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#col"
- }
- ]
- },
- "17865": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ListView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#column"
- }
- ]
- },
- "17866": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ListView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#rowspan"
- }
- ]
- },
- "17867": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ListView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#colspan"
- }
- ]
- },
- "17868": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ListView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#columnspan"
- }
- ]
- },
- "17869": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ListView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#order"
- }
- ]
- },
- "17870": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ListView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#flexgrow"
- }
- ]
- },
- "17871": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ListView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#flexshrink"
- }
- ]
- },
- "17872": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ListView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#flexwrapbefore"
- }
- ]
- },
- "17873": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ListView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#alignself"
- }
- ]
- },
- "17874": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ListView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#oldleft"
- }
- ]
- },
- "17875": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ListView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#oldtop"
- }
- ]
- },
- "17876": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ListView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#oldright"
- }
- ]
- },
- "17877": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ListView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#oldbottom"
- }
- ]
- },
- "17878": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ListView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "17879": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ListView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveminwidth"
- }
- ]
- },
- "17880": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ListView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveminheight"
- }
- ]
- },
- "17881": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ListView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivewidth"
- }
- ]
- },
- "17882": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ListView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveheight"
- }
- ]
- },
- "17883": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ListView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivemargintop"
- }
- ]
- },
- "17884": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ListView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivemarginright"
- }
- ]
- },
- "17885": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ListView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivemarginbottom"
- }
- ]
- },
- "17886": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ListView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivemarginleft"
- }
- ]
- },
- "17887": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ListView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivepaddingtop"
- }
- ]
- },
- "17888": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ListView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivepaddingright"
- }
- ]
- },
- "17889": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ListView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivepaddingbottom"
- }
- ]
- },
- "17890": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ListView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivepaddingleft"
- }
- ]
- },
- "17891": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ListView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectivebordertopwidth"
- }
- ]
- },
- "17892": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ListView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveborderrightwidth"
- }
- ]
- },
- "17893": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ListView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveborderbottomwidth"
- }
- ]
- },
- "17894": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ListView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#effectiveborderleftwidth"
- }
- ]
- },
- "17895": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ListView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#defaultpaddingtop"
- }
- ]
- },
- "17896": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ListView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#defaultpaddingright"
- }
- ]
- },
- "17897": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ListView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#defaultpaddingbottom"
- }
- ]
- },
- "17898": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ListView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#defaultpaddingleft"
- }
- ]
- },
- "17899": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ListView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/ListView#ispaddingrelative"
- }
- ]
- },
- "17901": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ListView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ListView#reusable"
- }
- ]
- },
- "17902": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ListView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ListView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "17906": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ListView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ListView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "17910": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ListView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ListView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17912": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ListView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ListView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "17916": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ListView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ListView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17918": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ListView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ListView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "17922": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ListView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ListView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "17926": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ListView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ListView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "17930": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ListView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ListView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "17932": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ListView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ListView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17934": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ListView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ListView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17938": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ListView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ListView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17940": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ListView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ListView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17942": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ListView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ListView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17945": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ListView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ListView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17948": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ListView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ListView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "17954": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ListView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ListView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17956": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ListView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ListView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17958": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ListView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ListView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17961": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ListView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ListView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17964": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ListView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ListView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17968": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ListView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ListView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17971": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ListView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ListView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17975": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ListView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ListView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17979": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ListView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ListView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17982": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ListView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ListView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "17984": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ListView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ListView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17987": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ListView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ListView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17990": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ListView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ListView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "17993": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ListView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ListView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "17995": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ListView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ListView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17997": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ListView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ListView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "17999": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ListView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ListView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18004": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ListView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ListView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18007": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ListView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ListView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18010": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ListView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ListView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18013": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ListView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ListView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "18016": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ListView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ListView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18020": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ListView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ListView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18023": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ListView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ListView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18027": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ListView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ListView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18030": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ListView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ListView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18033": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ListView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ListView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18035": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ListView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ListView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "18039": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ListView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ListView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18042": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ListView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ListView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18044": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ListView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ListView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18047": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ListView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ListView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "18050": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ListView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ListView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18054": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ListView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ListView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18062": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ListView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ListView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18066": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ListView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ListView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18071": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ListView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ListView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18074": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ListView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ListView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "18079": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ListView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ListView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ListView.md b/content/api/class/ListView.md
deleted file mode 100644
index f1584a37..00000000
--- a/content/api/class/ListView.md
+++ /dev/null
@@ -1,304 +0,0 @@
----
-title: ListView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ListView'
-layout: api
-seo:
- description: "Represents a view that shows items in a vertically scrolling list."
----
-
-
-
-
-
-
-AndroidTransitionType?: {\n enter?: string\n exit?: string\n popEnter?: string\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "name": "AndroidTransitionType",
- "url": "/api/class/Transition#androidtransitiontype",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#androidtransitiontype"
- }
- ]
- },
- "32388": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ModalTransition#constructor",
- "flags": {},
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Transition#constructor",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ModalTransition(duration?: number, nativeCurve?: any): ModalTransition",
- "url": "/api/class/ModalTransition#constructor-new-modaltransition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Transition#constructor",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "duration",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "nativeCurve",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "ModalTransition"
- }
- ]
- },
- "32392": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ModalTransition#id",
- "flags": {},
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "id: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#id"
- }
- ]
- },
- "32393": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/ModalTransition#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "name?: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "url": "/api/class/ModalTransition#name"
- }
- ]
- },
- "32394": {
- "name": "transitionController",
- "type": "Property",
- "url": "/api/class/ModalTransition#transitioncontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "transitionController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#transitioncontroller"
- }
- ]
- },
- "32395": {
- "name": "interactiveController",
- "type": "Property",
- "url": "/api/class/ModalTransition#interactivecontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "interactiveController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#interactivecontroller"
- }
- ]
- },
- "32396": {
- "name": "presented",
- "type": "Property",
- "url": "/api/class/ModalTransition#presented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presented?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#presented"
- }
- ]
- },
- "32397": {
- "name": "presenting",
- "type": "Property",
- "url": "/api/class/ModalTransition#presenting",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presenting?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#presenting"
- }
- ]
- },
- "32398": {
- "name": "sharedElements",
- "type": "Property",
- "url": "/api/class/ModalTransition#sharedelements",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "sharedElements?: {\n independent?: (SharedElementSettings & {})[]\n presented?: SharedElementSettings[]\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 32,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/ModalTransition#sharedelements"
- }
- ]
- },
- "32405": {
- "name": "getDuration",
- "type": "Method",
- "url": "/api/class/ModalTransition#getduration",
- "flags": {},
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getDuration(): number",
- "url": "/api/class/ModalTransition#getduration-getduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32407": {
- "name": "setDuration",
- "type": "Method",
- "url": "/api/class/ModalTransition#setduration",
- "flags": {},
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setDuration(value: number): void",
- "url": "/api/class/ModalTransition#setduration-setduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32410": {
- "name": "getCurve",
- "type": "Method",
- "url": "/api/class/ModalTransition#getcurve",
- "flags": {},
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCurve(): any",
- "url": "/api/class/ModalTransition#getcurve-getcurve-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 42,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32412": {
- "name": "animateIOSTransition",
- "type": "Method",
- "url": "/api/class/ModalTransition#animateiostransition",
- "flags": {},
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animateIOSTransition(\n transitionContext: any,\n fromViewCtrl: any,\n toViewCtrl: any,\n operation: any\n): void",
- "url": "/api/class/ModalTransition#animateiostransition-animateiostransition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionContext",
- "type": "any",
- "flags": {}
- },
- {
- "name": "fromViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32418": {
- "name": "createAndroidAnimator",
- "type": "Method",
- "url": "/api/class/ModalTransition#createandroidanimator",
- "flags": {},
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAndroidAnimator(transitionType: string): any",
- "url": "/api/class/ModalTransition#createandroidanimator-createandroidanimator-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionType",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32421": {
- "name": "setupInteractiveGesture",
- "type": "Method",
- "url": "/api/class/ModalTransition#setupinteractivegesture",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setupInteractiveGesture(startCallback: () => void, view: View): void",
- "url": "/api/class/ModalTransition#setupinteractivegesture-setupinteractivegesture-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "startCallback",
- "type": "() => void",
- "flags": {}
- },
- {
- "name": "view",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32427": {
- "name": "iosDismissedController",
- "type": "Method",
- "url": "/api/class/ModalTransition#iosdismissedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosDismissedController(dismissed: any): any",
- "url": "/api/class/ModalTransition#iosdismissedcontroller-iosdismissedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "dismissed",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32430": {
- "name": "iosPresentedController",
- "type": "Method",
- "url": "/api/class/ModalTransition#iospresentedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosPresentedController(presented: any, presenting: any, source: any): any",
- "url": "/api/class/ModalTransition#iospresentedcontroller-iospresentedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "presented",
- "type": "any",
- "flags": {}
- },
- {
- "name": "presenting",
- "type": "any",
- "flags": {}
- },
- {
- "name": "source",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32435": {
- "name": "iosInteractionDismiss",
- "type": "Method",
- "url": "/api/class/ModalTransition#iosinteractiondismiss",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionDismiss(animator: any): any",
- "url": "/api/class/ModalTransition#iosinteractiondismiss-iosinteractiondismiss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32438": {
- "name": "iosInteractionPresented",
- "type": "Method",
- "url": "/api/class/ModalTransition#iosinteractionpresented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionPresented(animator: any): any",
- "url": "/api/class/ModalTransition#iosinteractionpresented-iosinteractionpresented-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32441": {
- "name": "iosNavigatedController",
- "type": "Method",
- "url": "/api/class/ModalTransition#iosnavigatedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosNavigatedController(\n navigationController: any,\n operation: number,\n fromVC: any,\n toVC: any\n): any",
- "url": "/api/class/ModalTransition#iosnavigatedcontroller-iosnavigatedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "navigationController",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "number",
- "flags": {}
- },
- {
- "name": "fromVC",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toVC",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32447": {
- "name": "androidFragmentTransactionCallback",
- "type": "Method",
- "url": "/api/class/ModalTransition#androidfragmenttransactioncallback",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "androidFragmentTransactionCallback(fragmentTransaction: any, currentEntry: BackstackEntry, newEntry: BackstackEntry): void",
- "url": "/api/class/ModalTransition#androidfragmenttransactioncallback-androidfragmenttransactioncallback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "fragmentTransaction",
- "type": "any",
- "flags": {}
- },
- {
- "name": "currentEntry",
- "type": "BackstackEntry",
- "flags": {}
- },
- {
- "name": "newEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ModalTransition.md b/content/api/class/ModalTransition.md
deleted file mode 100644
index 2bb76f57..00000000
--- a/content/api/class/ModalTransition.md
+++ /dev/null
@@ -1,46 +0,0 @@
----
-title: ModalTransition
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ModalTransition'
-layout: api
-seo:
- description: ModalTransition
----
-
-
-
-
-
-
-resolveModuleName(path: string, ext: string): string",
- "url": "/api/class/ModuleNameResolver#resolvemodulename-resolvemodulename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/module-name-resolver/index.d.ts",
- "line": 13,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "path",
- "type": "string",
- "flags": {}
- },
- {
- "name": "ext",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "string"
- }
- ]
- },
- "2307": {
- "name": "clearCache",
- "type": "Method",
- "url": "/api/class/ModuleNameResolver#clearcache",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "clearCache(): void",
- "url": "/api/class/ModuleNameResolver#clearcache-clearcache-1",
- "sources": [
- {
- "fileName": "@nativescript/core/module-name-resolver/index.d.ts",
- "line": 14,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ModuleNameResolver.md b/content/api/class/ModuleNameResolver.md
deleted file mode 100644
index bf976de5..00000000
--- a/content/api/class/ModuleNameResolver.md
+++ /dev/null
@@ -1,76 +0,0 @@
----
-title: ModuleNameResolver
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ModuleNameResolver'
-layout: api
-seo:
- description: ModuleNameResolver
----
-
-
-
-
-
-
-loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/NavigationButton#loadedevent"
- }
- ]
- },
- "6310": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/NavigationButton#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/NavigationButton#unloadedevent"
- }
- ]
- },
- "6311": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/NavigationButton#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/NavigationButton#createdevent"
- }
- ]
- },
- "6312": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/NavigationButton#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/NavigationButton#disposenativeviewevent"
- }
- ]
- },
- "6313": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/NavigationButton#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/NavigationButton#propertychangeevent"
- }
- ]
- },
- "6314": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/NavigationButton#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6322": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/NavigationButton#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6330": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/NavigationButton#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6338": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/NavigationButton#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6346": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/NavigationButton#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6354": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/NavigationButton#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new NavigationButton(): NavigationButton",
- "url": "/api/class/NavigationButton#constructor-new-navigationbutton",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "NavigationButton"
- }
- ]
- },
- "6357": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/NavigationButton#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text of the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 109,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text of the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#text"
- }
- ]
- },
- "6358": {
- "name": "icon",
- "type": "Property",
- "url": "/api/class/NavigationButton#icon",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the icon of the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "icon: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 114,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the icon of the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#icon"
- }
- ]
- },
- "6359": {
- "name": "actionView",
- "type": "Property",
- "url": "/api/class/NavigationButton#actionview",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the custom action view of the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "actionView: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 119,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the custom action view of the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#actionview"
- }
- ]
- },
- "6360": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/NavigationButton#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "visibility: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 124,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#visibility"
- }
- ]
- },
- "6361": {
- "name": "actionBar",
- "type": "Property",
- "url": "/api/class/NavigationButton#actionbar",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the action bar that contains the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "actionBar: ActionBar",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 129,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the action bar that contains the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#actionbar"
- }
- ]
- },
- "6362": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/NavigationButton#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void): void",
- "url": "/api/class/NavigationButton#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 137,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"tap\", callback: (args: EventData) => void): void",
- "url": "/api/class/NavigationButton#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 142,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a tap event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"tap\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6377": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/NavigationButton#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOS specific options of the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "ios: IOSActionItemSettings",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 155,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the iOS specific options of the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#ios"
- }
- ]
- },
- "6378": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/NavigationButton#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Android specific options of the action item."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "android: AndroidActionItemSettings",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/action-bar/index.d.ts",
- "line": 161,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Android specific options of the action item."
- }
- ]
- },
- "url": "/api/class/NavigationButton#android"
- }
- ]
- },
- "6379": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/NavigationButton#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#domnode"
- }
- ]
- },
- "6380": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/NavigationButton#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#recyclenativeview"
- }
- ]
- },
- "6381": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/NavigationButton#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/NavigationButton#viewcontroller"
- }
- ]
- },
- "6382": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/NavigationButton#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#bindingcontext"
- }
- ]
- },
- "6383": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/NavigationButton#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/NavigationButton#nativeviewprotected"
- }
- ]
- },
- "6384": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/NavigationButton#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/NavigationButton#parent"
- }
- ]
- },
- "6385": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/NavigationButton#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/NavigationButton#iscollapsed"
- }
- ]
- },
- "6386": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/NavigationButton#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/NavigationButton#id"
- }
- ]
- },
- "6387": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/NavigationButton#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/NavigationButton#classname"
- }
- ]
- },
- "6388": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/NavigationButton#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/NavigationButton#sharedtransitiontag"
- }
- ]
- },
- "6389": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/NavigationButton#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/NavigationButton#sharedtransitionignore"
- }
- ]
- },
- "6390": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/NavigationButton#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#domid"
- }
- ]
- },
- "6391": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/NavigationButton#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#context"
- }
- ]
- },
- "6392": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/NavigationButton#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#isaddedtonativevisualtree"
- }
- ]
- },
- "6393": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/NavigationButton#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#cssstate"
- }
- ]
- },
- "6394": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/NavigationButton#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#stylescope"
- }
- ]
- },
- "6399": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/NavigationButton#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/NavigationButton#suspendnativeupdatescount"
- }
- ]
- },
- "6400": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/NavigationButton#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#isstylescopehost"
- }
- ]
- },
- "6401": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/NavigationButton#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "6402": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/NavigationButton#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#left"
- }
- ]
- },
- "6403": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/NavigationButton#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#top"
- }
- ]
- },
- "6404": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveleft"
- }
- ]
- },
- "6405": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivetop"
- }
- ]
- },
- "6406": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/NavigationButton#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#dock"
- }
- ]
- },
- "6407": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/NavigationButton#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#row"
- }
- ]
- },
- "6408": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/NavigationButton#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#col"
- }
- ]
- },
- "6409": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/NavigationButton#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#column"
- }
- ]
- },
- "6410": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/NavigationButton#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#rowspan"
- }
- ]
- },
- "6411": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/NavigationButton#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#colspan"
- }
- ]
- },
- "6412": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/NavigationButton#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#columnspan"
- }
- ]
- },
- "6413": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/NavigationButton#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#order"
- }
- ]
- },
- "6414": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/NavigationButton#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#flexgrow"
- }
- ]
- },
- "6415": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/NavigationButton#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#flexshrink"
- }
- ]
- },
- "6416": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/NavigationButton#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#flexwrapbefore"
- }
- ]
- },
- "6417": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/NavigationButton#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#alignself"
- }
- ]
- },
- "6418": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/NavigationButton#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#oldleft"
- }
- ]
- },
- "6419": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/NavigationButton#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#oldtop"
- }
- ]
- },
- "6420": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/NavigationButton#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#oldright"
- }
- ]
- },
- "6421": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/NavigationButton#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#oldbottom"
- }
- ]
- },
- "6422": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/NavigationButton#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#ignoreflexminwidthheightreset"
- }
- ]
- },
- "6423": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveminwidth"
- }
- ]
- },
- "6424": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveminheight"
- }
- ]
- },
- "6425": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivewidth"
- }
- ]
- },
- "6426": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveheight"
- }
- ]
- },
- "6427": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivemargintop"
- }
- ]
- },
- "6428": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivemarginright"
- }
- ]
- },
- "6429": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivemarginbottom"
- }
- ]
- },
- "6430": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivemarginleft"
- }
- ]
- },
- "6431": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivepaddingtop"
- }
- ]
- },
- "6432": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivepaddingright"
- }
- ]
- },
- "6433": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivepaddingbottom"
- }
- ]
- },
- "6434": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivepaddingleft"
- }
- ]
- },
- "6435": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectivebordertopwidth"
- }
- ]
- },
- "6436": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveborderrightwidth"
- }
- ]
- },
- "6437": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveborderbottomwidth"
- }
- ]
- },
- "6438": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/NavigationButton#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#effectiveborderleftwidth"
- }
- ]
- },
- "6439": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/NavigationButton#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#defaultpaddingtop"
- }
- ]
- },
- "6440": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/NavigationButton#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#defaultpaddingright"
- }
- ]
- },
- "6441": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/NavigationButton#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#defaultpaddingbottom"
- }
- ]
- },
- "6442": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/NavigationButton#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#defaultpaddingleft"
- }
- ]
- },
- "6443": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/NavigationButton#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#ispaddingrelative"
- }
- ]
- },
- "6445": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/NavigationButton#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/NavigationButton#reusable"
- }
- ]
- },
- "6446": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/NavigationButton#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "6450": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/NavigationButton#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "6454": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/NavigationButton#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "6456": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/NavigationButton#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "6460": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/NavigationButton#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6462": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/NavigationButton#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "6466": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/NavigationButton#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/NavigationButton#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "6470": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/NavigationButton#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/NavigationButton#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "6474": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/NavigationButton#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/NavigationButton#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "6476": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/NavigationButton#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/NavigationButton#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6478": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/NavigationButton#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/NavigationButton#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6482": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/NavigationButton#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/NavigationButton#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6484": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/NavigationButton#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/NavigationButton#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6486": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/NavigationButton#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/NavigationButton#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6488": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/NavigationButton#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/NavigationButton#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6491": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/NavigationButton#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/NavigationButton#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6494": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/NavigationButton#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/NavigationButton#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "6500": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/NavigationButton#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/NavigationButton#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6502": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/NavigationButton#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/NavigationButton#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6504": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/NavigationButton#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#cssclasses"
- }
- ]
- },
- "6505": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/NavigationButton#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "url": "/api/class/NavigationButton#csspseudoclasses"
- }
- ]
- },
- "6506": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/NavigationButton#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/NavigationButton#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6509": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/NavigationButton#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/NavigationButton#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6512": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/NavigationButton#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/NavigationButton#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6516": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/NavigationButton#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/NavigationButton#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6519": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/NavigationButton#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/NavigationButton#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6521": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/NavigationButton#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/NavigationButton#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6527": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/NavigationButton#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/NavigationButton#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6531": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/NavigationButton#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/NavigationButton#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6535": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/NavigationButton#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/NavigationButton#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6538": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/NavigationButton#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/NavigationButton#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "6540": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/NavigationButton#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/NavigationButton#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6543": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/NavigationButton#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/NavigationButton#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6546": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/NavigationButton#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/NavigationButton#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6549": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/NavigationButton#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/NavigationButton#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "6551": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/NavigationButton#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/NavigationButton#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6553": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/NavigationButton#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/NavigationButton#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6555": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/NavigationButton#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/NavigationButton#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6557": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/NavigationButton#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/NavigationButton#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6560": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/NavigationButton#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/NavigationButton#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6565": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/NavigationButton#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/NavigationButton#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6568": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/NavigationButton#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/NavigationButton#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6571": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/NavigationButton#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/NavigationButton#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6574": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/NavigationButton#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/NavigationButton#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "6577": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/NavigationButton#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/NavigationButton#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "6581": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/NavigationButton#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/NavigationButton#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6584": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/NavigationButton#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/NavigationButton#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6587": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/NavigationButton#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/NavigationButton#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "6591": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/NavigationButton#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/NavigationButton#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6594": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/NavigationButton#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/NavigationButton#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6597": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/NavigationButton#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/NavigationButton#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6599": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/NavigationButton#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/NavigationButton#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "6603": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/NavigationButton#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/NavigationButton#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6606": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/NavigationButton#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/NavigationButton#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/NavigationButton#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "6613": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/NavigationButton#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/NavigationButton#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6616": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/NavigationButton#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/NavigationButton#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6618": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/NavigationButton#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/NavigationButton#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "6621": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/NavigationButton#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/NavigationButton#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "6624": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/NavigationButton#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/NavigationButton#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6628": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/NavigationButton#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6636": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/NavigationButton#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6644": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/NavigationButton#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6652": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/NavigationButton#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/NavigationButton#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6660": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/NavigationButton#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/NavigationButton#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6664": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/NavigationButton#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/NavigationButton#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "6669": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/NavigationButton#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/NavigationButton#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "6672": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/NavigationButton#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/NavigationButton#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "6677": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/NavigationButton#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/NavigationButton#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ActionItem"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/NavigationButton.md b/content/api/class/NavigationButton.md
deleted file mode 100644
index efdc5060..00000000
--- a/content/api/class/NavigationButton.md
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: NavigationButton
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'NavigationButton'
-layout: api
-seo:
- description: "Represents the navigation (a.k.a. \"back\") button."
----
-
-
-
-
-
-
-propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Observable#propertychangeevent"
- }
- ]
- },
- "1425": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Observable#on-2",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1433": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Observable#once-2",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1441": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Observable#off-2",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1449": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Observable#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1457": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Observable#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1467": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Observable#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Observable(): Observable",
- "url": "/api/class/Observable#constructor-new-observable",
- "parameters": [],
- "returns": "Observable"
- }
- ]
- },
- "1471": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Observable#get",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Observable#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1474": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Observable#set",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Observable#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1478": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Observable#setproperty",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Observable#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1482": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Observable#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1490": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Observable#once",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1498": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Observable#off",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1506": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Observable#addeventlistener",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1514": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Observable#removeeventlistener",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Observable#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1523": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Observable#notify",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Observable#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1527": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Observable#notifypropertychange",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Observable#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1532": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Observable#haslisteners",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Observable#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1535": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Observable#createpropertychangedata",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "1540": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Observable#emit",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Observable#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Observable.md b/content/api/class/Observable.md
deleted file mode 100644
index 150ef302..00000000
--- a/content/api/class/Observable.md
+++ /dev/null
@@ -1,318 +0,0 @@
----
-title: Observable
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Observable'
-layout: api
-seo:
- description: "Observable is used when you want to be notified when a change occurs. Use on/off methods to add/remove listener.\nPlease note that should you be using the `new Observable({})` constructor, it is **obsolete** since v3.0,\nand you have to migrate to the \"data/observable\" `fromObject({})` or the `fromObjectRecursive({})` functions."
----
-
-
-
-
-
-
-changeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 37,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to change event."
- }
- ]
- },
- "url": "/api/class/ObservableArray#changeevent"
- }
- ]
- },
- "1122": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ObservableArray#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ObservableArray#propertychangeevent"
- }
- ]
- },
- "1123": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ObservableArray#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1131": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ObservableArray#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1139": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ObservableArray#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1147": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ObservableArray#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1155": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ObservableArray#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1163": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ObservableArray#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ObservableArray<T>(arrayLength?: number): ObservableArray<T>",
- "url": "/api/class/ObservableArray#constructor-new-observablearray",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Create ObservableArraygetItem(pos: number): T",
- "url": "/api/class/ObservableArray#getitem-getitem-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 58,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns item at specified position.\nSupports relative indexing from the end of the array when passed a negative index."
- }
- ]
- },
- "parameters": [
- {
- "name": "pos",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "1179": {
- "name": "setItem",
- "type": "Method",
- "url": "/api/class/ObservableArray#setitem",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setItem(pos: number, value: T): void",
- "url": "/api/class/ObservableArray#setitem-setitem-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets item at specified position.\nSupports relative indexing from the end of the array when passed a negative index."
- }
- ]
- },
- "parameters": [
- {
- "name": "pos",
- "type": "number",
- "flags": {}
- },
- {
- "name": "value",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1183": {
- "name": "length",
- "type": "Accessor",
- "url": "/api/class/ObservableArray#length",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get length(): number",
- "url": "/api/class/ObservableArray#length-length-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 67,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the length of the array. This is a number one higher than the highest element defined in an array."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "1187": {
- "name": "toJSON",
- "type": "Method",
- "url": "/api/class/ObservableArray#tojson",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toJSON(): any[]",
- "url": "/api/class/ObservableArray#tojson-tojson-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any[]"
- }
- ]
- },
- "1189": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ObservableArray#tostring",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ObservableArray#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns a string representation of an array."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "1191": {
- "name": "toLocaleString",
- "type": "Method",
- "url": "/api/class/ObservableArray#tolocalestring",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toLocaleString(): string",
- "url": "/api/class/ObservableArray#tolocalestring-tolocalestring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "1193": {
- "name": "concat",
- "type": "Method",
- "url": "/api/class/ObservableArray#concat",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "concat(...args: any[]): ObservableArray<T>",
- "url": "/api/class/ObservableArray#concat-concat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Combines two or more arrays."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "ObservableArray<T>"
- }
- ]
- },
- "1196": {
- "name": "join",
- "type": "Method",
- "url": "/api/class/ObservableArray#join",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "join(separator?: string): string",
- "url": "/api/class/ObservableArray#join-join-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds all the elements of an array separated by the specified separator string."
- }
- ]
- },
- "parameters": [
- {
- "name": "separator",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma."
- }
- ]
- }
- }
- ],
- "returns": "string"
- }
- ]
- },
- "1199": {
- "name": "pop",
- "type": "Method",
- "url": "/api/class/ObservableArray#pop",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "pop(): T",
- "url": "/api/class/ObservableArray#pop-pop-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the last element from an array and returns it."
- }
- ]
- },
- "parameters": [],
- "returns": "T"
- }
- ]
- },
- "1201": {
- "name": "push",
- "type": "Method",
- "url": "/api/class/ObservableArray#push",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "push(...args: T[]): number",
- "url": "/api/class/ObservableArray#push-push-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 93,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Appends new elements to an array, and returns the new length of the array."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "T[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "1204": {
- "name": "_notifyLengthChange",
- "type": "Method",
- "url": "/api/class/ObservableArray#notifylengthchange",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_notifyLengthChange(): void",
- "url": "/api/class/ObservableArray#notifylengthchange-notifylengthchange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 94,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "1206": {
- "name": "reverse",
- "type": "Method",
- "url": "/api/class/ObservableArray#reverse",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "reverse(): ObservableArray<T>",
- "url": "/api/class/ObservableArray#reverse-reverse-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Reverses the elements in an Array.\nThis method uses 'in place' algorithm."
- }
- ]
- },
- "parameters": [],
- "returns": "ObservableArray<T>"
- }
- ]
- },
- "1208": {
- "name": "shift",
- "type": "Method",
- "url": "/api/class/ObservableArray#shift",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "shift(): T",
- "url": "/api/class/ObservableArray#shift-shift-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 103,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the first element from an array and returns it."
- }
- ]
- },
- "parameters": [],
- "returns": "T"
- }
- ]
- },
- "1210": {
- "name": "slice",
- "type": "Method",
- "url": "/api/class/ObservableArray#slice",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "slice(start?: number, end?: number): ObservableArray<T>",
- "url": "/api/class/ObservableArray#slice-slice-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 109,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns a section of an array."
- }
- ]
- },
- "parameters": [
- {
- "name": "start",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The beginning of the specified portion of the array."
- }
- ]
- }
- },
- {
- "name": "end",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The end of the specified portion of the array."
- }
- ]
- }
- }
- ],
- "returns": "ObservableArray<T>"
- }
- ]
- },
- "1214": {
- "name": "sort",
- "type": "Method",
- "url": "/api/class/ObservableArray#sort",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sort(compareFn?: (a: T, b: T) => number): ObservableArray<T>",
- "url": "/api/class/ObservableArray#sort-sort-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 115,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sorts an array.\nThis method uses 'in place' algorithm."
- }
- ]
- },
- "parameters": [
- {
- "name": "compareFn",
- "type": "(a: T, b: T) => number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the function used to determine the order of the elements. If omitted, the elements are sorted in ascending, ASCII character order."
- }
- ]
- }
- }
- ],
- "returns": "ObservableArray<T>"
- }
- ]
- },
- "1221": {
- "name": "splice",
- "type": "Method",
- "url": "/api/class/ObservableArray#splice",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "splice(start: number, deleteCount?: number, ...items: T[]): ObservableArray<T>",
- "url": "/api/class/ObservableArray#splice-splice-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.\nThis method uses 'in place' algorithm."
- }
- ]
- },
- "parameters": [
- {
- "name": "start",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The zero-based location in the array from which to start removing elements."
- }
- ]
- }
- },
- {
- "name": "deleteCount",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The number of elements to remove."
- }
- ]
- }
- },
- {
- "name": "items",
- "type": "T[]",
- "flags": {
- "isRest": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Elements to insert into the array in place of the deleted elements."
- }
- ]
- }
- }
- ],
- "returns": "ObservableArray<T>"
- }
- ]
- },
- "1226": {
- "name": "unshift",
- "type": "Method",
- "url": "/api/class/ObservableArray#unshift",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unshift(...args: T[]): number",
- "url": "/api/class/ObservableArray#unshift-unshift-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts new elements at the start of an array."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "T[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "1229": {
- "name": "find",
- "type": "Method",
- "url": "/api/class/ObservableArray#find",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "find(callbackfn: (value: T, index: number, array: ObservableArray<T>) => any, thisArg?: any): T",
- "url": "/api/class/ObservableArray#find-find-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 134,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the first element in the array where predicate is true, and null otherwise."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => any",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead."
- }
- ]
- }
- }
- ],
- "returns": "T"
- }
- ]
- },
- "1238": {
- "name": "findIndex",
- "type": "Method",
- "url": "/api/class/ObservableArray#findindex",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "findIndex(callbackfn: (value: T, index: number, array: ObservableArray<T>) => any, thisArg?: any): number",
- "url": "/api/class/ObservableArray#findindex-findindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the index of the first element in the array where predicate is true, and -1 otherwise."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => any",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "1247": {
- "name": "includes",
- "type": "Method",
- "url": "/api/class/ObservableArray#includes",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "includes(searchElement: T, fromIndex?: number): boolean",
- "url": "/api/class/ObservableArray#includes-includes-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 146,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether the specified element exists inside the array."
- }
- ]
- },
- "parameters": [
- {
- "name": "searchElement",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The value to locate in the array."
- }
- ]
- }
- },
- {
- "name": "fromIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1251": {
- "name": "indexOf",
- "type": "Method",
- "url": "/api/class/ObservableArray#indexof",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "indexOf(searchElement: T, fromIndex?: number): number",
- "url": "/api/class/ObservableArray#indexof-indexof-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 152,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the index of the first occurrence of a value in an array."
- }
- ]
- },
- "parameters": [
- {
- "name": "searchElement",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The value to locate in the array."
- }
- ]
- }
- },
- {
- "name": "fromIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "1255": {
- "name": "lastIndexOf",
- "type": "Method",
- "url": "/api/class/ObservableArray#lastindexof",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "lastIndexOf(searchElement: T, fromIndex?: number): number",
- "url": "/api/class/ObservableArray#lastindexof-lastindexof-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 158,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the index of the last occurrence of a specified value in an array."
- }
- ]
- },
- "parameters": [
- {
- "name": "searchElement",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The value to locate in the array."
- }
- ]
- }
- },
- {
- "name": "fromIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "1259": {
- "name": "every",
- "type": "Method",
- "url": "/api/class/ObservableArray#every",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "every(callbackfn: (value: T, index: number, array: ObservableArray<T>) => boolean, thisArg?: any): boolean",
- "url": "/api/class/ObservableArray#every-every-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 164,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether all the members of an array satisfy the specified test."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to three arguments. The every method calls the callbackfn function for each element in array1 until the callbackfn returns false, or until the end of the array."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1268": {
- "name": "some",
- "type": "Method",
- "url": "/api/class/ObservableArray#some",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "some(callbackfn: (value: T, index: number, array: ObservableArray<T>) => boolean, thisArg?: any): boolean",
- "url": "/api/class/ObservableArray#some-some-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 170,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines whether the specified callback function returns true for any element of an array."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to three arguments. The some method calls the callbackfn function for each element in array1 until the callbackfn returns true, or until the end of the array."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1277": {
- "name": "forEach",
- "type": "Method",
- "url": "/api/class/ObservableArray#foreach",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "forEach(callbackfn: (value: T, index: number, array: ObservableArray<T>) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#foreach-foreach-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 176,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the specified action for each element in an array."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1286": {
- "name": "map",
- "type": "Method",
- "url": "/api/class/ObservableArray#map",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "map<U>(callbackfn: (value: T, index: number, array: ObservableArray<T>) => U, thisArg?: any): ObservableArray<U>",
- "url": "/api/class/ObservableArray#map-map-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 182,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls a defined callback function on each element of an array, and returns an array that contains the results."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => U",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
- }
- ]
- }
- }
- ],
- "returns": "ObservableArray<U>"
- }
- ]
- },
- "1296": {
- "name": "filter",
- "type": "Method",
- "url": "/api/class/ObservableArray#filter",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "filter(callbackfn: (value: T, index: number, array: ObservableArray<T>) => boolean, thisArg?: any): ObservableArray<T>",
- "url": "/api/class/ObservableArray#filter-filter-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the elements of an array that meet the condition specified in a callback function."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(value: T, index: number, array: ObservableArray<T>) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to three arguments. The filter method calls the callbackfn function one time for each element in the array."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
- }
- ]
- }
- }
- ],
- "returns": "ObservableArray<T>"
- }
- ]
- },
- "1305": {
- "name": "reduce",
- "type": "Method",
- "url": "/api/class/ObservableArray#reduce",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ObservableArray<T>) => T, initialValue?: T): T",
- "url": "/api/class/ObservableArray#reduce-reduce-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 194,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(previousValue: T, currentValue: T, currentIndex: number, array: ObservableArray<T>) => T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."
- }
- ]
- }
- },
- {
- "name": "initialValue",
- "type": "T",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
- }
- ]
- }
- }
- ],
- "returns": "T"
- }
- ]
- },
- "1315": {
- "name": "reduceRight",
- "type": "Method",
- "url": "/api/class/ObservableArray#reduceright",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: ObservableArray<T>) => T, initialValue?: T): T",
- "url": "/api/class/ObservableArray#reduceright-reduceright-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 200,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function."
- }
- ]
- },
- "parameters": [
- {
- "name": "callbackfn",
- "type": "(previousValue: T, currentValue: T, currentIndex: number, array: ObservableArray<T>) => T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."
- }
- ]
- }
- },
- {
- "name": "initialValue",
- "type": "T",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."
- }
- ]
- }
- }
- ],
- "returns": "T"
- }
- ]
- },
- "1325": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ObservableArray#on",
- "flags": {},
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"change\", callback: (args: ChangedData<T>) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"change\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ChangedData<T>) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1340": {
- "name": "[iterator]",
- "type": "Method",
- "url": "/api/class/ObservableArray#iterator",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "[iterator](): Generator<T, void, unknown>",
- "url": "/api/class/ObservableArray#iterator-iterator-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable-array/index.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Generator<T, void, unknown>"
- }
- ]
- },
- "1343": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ObservableArray#get",
- "flags": {},
- "inheritedFrom": {
- "name": "get",
- "url": "/api/class/Observable#get",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ObservableArray#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "get",
- "url": "/api/class/Observable#get",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1346": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ObservableArray#set",
- "flags": {},
- "inheritedFrom": {
- "name": "set",
- "url": "/api/class/Observable#set",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ObservableArray#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "set",
- "url": "/api/class/Observable#set",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1350": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ObservableArray#setproperty",
- "flags": {},
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ObservableArray#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1354": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ObservableArray#once",
- "flags": {},
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1362": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ObservableArray#off",
- "flags": {},
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1370": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ObservableArray#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1378": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ObservableArray#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ObservableArray#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1386": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ObservableArray#notify",
- "flags": {},
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ObservableArray#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1390": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ObservableArray#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ObservableArray#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1395": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ObservableArray#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ObservableArray#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1398": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ObservableArray#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ObservableArray#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "1403": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ObservableArray#emit",
- "flags": {},
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ObservableArray#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ObservableArray.md b/content/api/class/ObservableArray.md
deleted file mode 100644
index 4807c7af..00000000
--- a/content/api/class/ObservableArray.md
+++ /dev/null
@@ -1,488 +0,0 @@
----
-title: ObservableArray
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ObservableArray'
-layout: api
-seo:
- description: "Advanced array like class used when you want to be notified when a change occurs."
----
-
-
-
-
-
-
-navigatingToEvent: "navigatingTo" = 'navigatingTo'",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 34,
- "character": 24
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatingTo event."
- }
- ]
- },
- "url": "/api/class/Page#navigatingtoevent"
- }
- ]
- },
- "18118": {
- "name": "navigatedToEvent",
- "type": "Property",
- "url": "/api/class/Page#navigatedtoevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatedTo event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "navigatedToEvent: "navigatedTo" = 'navigatedTo'",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 39,
- "character": 24
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatedTo event."
- }
- ]
- },
- "url": "/api/class/Page#navigatedtoevent"
- }
- ]
- },
- "18119": {
- "name": "navigatingFromEvent",
- "type": "Property",
- "url": "/api/class/Page#navigatingfromevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatingFrom event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "navigatingFromEvent: "navigatingFrom" = 'navigatingFrom'",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 44,
- "character": 24
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatingFrom event."
- }
- ]
- },
- "url": "/api/class/Page#navigatingfromevent"
- }
- ]
- },
- "18120": {
- "name": "navigatedFromEvent",
- "type": "Property",
- "url": "/api/class/Page#navigatedfromevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatedFrom event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "navigatedFromEvent: "navigatedFrom" = 'navigatedFrom'",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 49,
- "character": 24
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to navigatedFrom event."
- }
- ]
- },
- "url": "/api/class/Page#navigatedfromevent"
- }
- ]
- },
- "18121": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Page#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Page#layoutchangedevent"
- }
- ]
- },
- "18122": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Page#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Page#showingmodallyevent"
- }
- ]
- },
- "18123": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Page#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Page#shownmodallyevent"
- }
- ]
- },
- "18124": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Page#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Page#accessibilityblurevent"
- }
- ]
- },
- "18125": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Page#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Page#accessibilityfocusevent"
- }
- ]
- },
- "18126": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Page#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Page#accessibilityfocuschangedevent"
- }
- ]
- },
- "18127": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Page#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Page#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "18136": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Page#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Page#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18144": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Page#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Page#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "18150": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Page#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Page#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "18154": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Page#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#accessibilityperformescapeevent"
- }
- ]
- },
- "18155": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Page#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Page#loadedevent"
- }
- ]
- },
- "18156": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Page#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Page#unloadedevent"
- }
- ]
- },
- "18157": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Page#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Page#createdevent"
- }
- ]
- },
- "18158": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Page#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Page#disposenativeviewevent"
- }
- ]
- },
- "18159": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Page#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Page#propertychangeevent"
- }
- ]
- },
- "18160": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Page#on-6",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#on-6-on-7",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18168": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Page#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18176": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Page#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18184": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Page#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18192": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Page#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18200": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Page#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Page(): Page",
- "url": "/api/class/Page#constructor-new-page",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "18202": {
- "name": "backgroundSpanUnderStatusBar",
- "type": "Property",
- "url": "/api/class/Page#backgroundspanunderstatusbar",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether page background spans under status bar."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "backgroundSpanUnderStatusBar: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 54,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether page background spans under status bar."
- }
- ]
- },
- "url": "/api/class/Page#backgroundspanunderstatusbar"
- }
- ]
- },
- "18203": {
- "name": "statusBarStyle",
- "type": "Property",
- "url": "/api/class/Page#statusbarstyle",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the style of the status bar."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "statusBarStyle: "dark" | "light"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 60,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the style of the status bar."
- }
- ]
- },
- "url": "/api/class/Page#statusbarstyle"
- }
- ]
- },
- "18204": {
- "name": "androidStatusBarBackground",
- "type": "Property",
- "url": "/api/class/Page#androidstatusbarbackground",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the status bar in Android."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "androidStatusBarBackground: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 66,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the status bar in Android."
- }
- ]
- },
- "url": "/api/class/Page#androidstatusbarbackground"
- }
- ]
- },
- "18205": {
- "name": "actionBarHidden",
- "type": "Property",
- "url": "/api/class/Page#actionbarhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Used to hide the Navigation Bar in iOS and the Action Bar in Android."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "actionBarHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 72,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Used to hide the Navigation Bar in iOS and the Action Bar in Android."
- }
- ]
- },
- "url": "/api/class/Page#actionbarhidden"
- }
- ]
- },
- "18206": {
- "name": "enableSwipeBackNavigation",
- "type": "Property",
- "url": "/api/class/Page#enableswipebacknavigation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Used to control if swipe back navigation in iOS is enabled. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "enableSwipeBackNavigation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 77,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Used to control if swipe back navigation in iOS is enabled. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Page#enableswipebacknavigation"
- }
- ]
- },
- "18207": {
- "name": "getKeyframeAnimationWithName",
- "type": "Method",
- "url": "/api/class/Page#getkeyframeanimationwithname",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getKeyframeAnimationWithName(animationName: string): KeyframeAnimationInfo",
- "url": "/api/class/Page#getkeyframeanimationwithname-getkeyframeanimationwithname-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 82,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns a CSS keyframe animation with the specified name, if it exists."
- }
- ]
- },
- "parameters": [
- {
- "name": "animationName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "KeyframeAnimationInfo"
- }
- ]
- },
- "18210": {
- "name": "navigationContext",
- "type": "Property",
- "url": "/api/class/Page#navigationcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A property that is used to pass a data from another page (while navigate to)."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "navigationContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 88,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A property that is used to pass a data from another page (while navigate to)."
- }
- ]
- },
- "url": "/api/class/Page#navigationcontext"
- }
- ]
- },
- "18211": {
- "name": "frame",
- "type": "Property",
- "url": "/api/class/Page#frame",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Frame object controlling this instance."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "frame: Frame",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 94,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the Frame object controlling this instance."
- }
- ]
- },
- "url": "/api/class/Page#frame"
- }
- ]
- },
- "18212": {
- "name": "actionBar",
- "type": "Property",
- "url": "/api/class/Page#actionbar",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ActionBar for this page."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "actionBar: ActionBar",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 100,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ActionBar for this page."
- }
- ]
- },
- "url": "/api/class/Page#actionbar"
- }
- ]
- },
- "18213": {
- "name": "onAccessibilityPerformEscape",
- "type": "Property",
- "url": "/api/class/Page#onaccessibilityperformescape",
- "flags": {
- "isPublic": true,
- "isOptional": true
- },
- "signatures": [
- {
- "code": "onAccessibilityPerformEscape?: () => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 106,
- "character": 8
- }
- ],
- "url": "/api/class/Page#onaccessibilityperformescape"
- }
- ]
- },
- "18216": {
- "name": "accessibilityAnnouncePageEnabled",
- "type": "Property",
- "url": "/api/class/Page#accessibilityannouncepageenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Should page changed be annnounced to the screen reader."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "accessibilityAnnouncePageEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 111,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Should page changed be annnounced to the screen reader."
- }
- ]
- },
- "url": "/api/class/Page#accessibilityannouncepageenabled"
- }
- ]
- },
- "18217": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Page#on",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 119,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"navigatingTo\", callback: (args: NavigatedData) => void, thisArg?: any): void",
- "url": "/api/class/Page#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 124,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when navigation to the page has started."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatingTo\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"navigatedTo\", callback: (args: NavigatedData) => void, thisArg?: any): void",
- "url": "/api/class/Page#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 129,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when navigation to the page has finished."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatedTo\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"navigatingFrom\", callback: (args: NavigatedData) => void, thisArg?: any): void",
- "url": "/api/class/Page#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 134,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when navigation from the page has started."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatingFrom\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"navigatedFrom\", callback: (args: NavigatedData) => void, thisArg?: any): void",
- "url": "/api/class/Page#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 139,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when navigation from the page has finished."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatedFrom\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18269": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Page#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(refocus?: boolean): void",
- "url": "/api/class/Page#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/index.d.ts",
- "line": 185,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [
- {
- "name": "refocus",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18272": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Page#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Page#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 35,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "18274": {
- "name": "_addChildFromBuilder",
- "type": "Method",
- "url": "/api/class/Page#addchildfrombuilder",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addChildFromBuilder(name: string, value: any): void",
- "url": "/api/class/Page#addchildfrombuilder-addchildfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 36,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18278": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Page#eachchildview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (child: View) => boolean): void",
- "url": "/api/class/Page#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18284": {
- "name": "_childrenCount",
- "type": "Accessor",
- "url": "/api/class/Page#childrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get _childrenCount(): number",
- "url": "/api/class/Page#childrencount-childrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 45,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "18286": {
- "name": "content",
- "type": "Property",
- "url": "/api/class/Page#content",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "content: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 4,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#content"
- }
- ]
- },
- "18287": {
- "name": "layoutView",
- "type": "Method",
- "url": "/api/class/Page#layoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutView(): View",
- "url": "/api/class/Page#layoutview-layoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "18300": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Page#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Page#iosoverflowsafearea"
- }
- ]
- },
- "18301": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Page#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/Page#android"
- }
- ]
- },
- "18302": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Page#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/Page#ios"
- }
- ]
- },
- "18303": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Page#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Page#bindingcontext"
- }
- ]
- },
- "18304": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Page#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Page#bordercolor"
- }
- ]
- },
- "18305": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Page#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Page#bordertopcolor"
- }
- ]
- },
- "18306": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Page#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderrightcolor"
- }
- ]
- },
- "18307": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Page#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderbottomcolor"
- }
- ]
- },
- "18308": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Page#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderleftcolor"
- }
- ]
- },
- "18309": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Page#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderwidth"
- }
- ]
- },
- "18310": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Page#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Page#bordertopwidth"
- }
- ]
- },
- "18311": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Page#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderrightwidth"
- }
- ]
- },
- "18312": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Page#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderbottomwidth"
- }
- ]
- },
- "18313": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Page#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderleftwidth"
- }
- ]
- },
- "18314": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Page#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderradius"
- }
- ]
- },
- "18315": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Page#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Page#bordertopleftradius"
- }
- ]
- },
- "18316": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Page#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Page#bordertoprightradius"
- }
- ]
- },
- "18317": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Page#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderbottomrightradius"
- }
- ]
- },
- "18318": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Page#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Page#borderbottomleftradius"
- }
- ]
- },
- "18319": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Page#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Page#color"
- }
- ]
- },
- "18320": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Page#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Page#accessible"
- }
- ]
- },
- "18321": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Page#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Page#accessibilityhidden"
- }
- ]
- },
- "18322": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Page#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Page#accessibilityidentifier"
- }
- ]
- },
- "18323": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Page#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Page#accessibilityrole"
- }
- ]
- },
- "18324": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Page#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Page#accessibilitystate"
- }
- ]
- },
- "18325": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Page#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Page#accessibilitylabel"
- }
- ]
- },
- "18326": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Page#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Page#accessibilityvalue"
- }
- ]
- },
- "18327": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Page#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Page#accessibilityhint"
- }
- ]
- },
- "18328": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Page#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#accessibilityliveregion"
- }
- ]
- },
- "18329": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Page#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Page#accessibilitylanguage"
- }
- ]
- },
- "18330": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Page#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Page#accessibilitymediasession"
- }
- ]
- },
- "18331": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Page#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Page#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "18332": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Page#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Page#iosaccessibilityminfontscale"
- }
- ]
- },
- "18333": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Page#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Page#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "18334": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Page#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Page#androidcontentdescriptionupdated"
- }
- ]
- },
- "18335": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Page#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#automationtext"
- }
- ]
- },
- "18336": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Page#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Page#androidelevation"
- }
- ]
- },
- "18337": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Page#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Page#androiddynamicelevationoffset"
- }
- ]
- },
- "18338": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Page#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Page#background"
- }
- ]
- },
- "18339": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Page#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Page#backgroundcolor"
- }
- ]
- },
- "18340": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Page#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Page#backgroundimage"
- }
- ]
- },
- "18341": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Page#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Page#boxshadow"
- }
- ]
- },
- "18342": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Page#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Page#minwidth"
- }
- ]
- },
- "18343": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Page#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Page#minheight"
- }
- ]
- },
- "18344": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Page#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Page#width"
- }
- ]
- },
- "18345": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Page#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Page#height"
- }
- ]
- },
- "18346": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Page#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Page#margin"
- }
- ]
- },
- "18347": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Page#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Page#marginleft"
- }
- ]
- },
- "18348": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Page#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Page#margintop"
- }
- ]
- },
- "18349": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Page#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Page#marginright"
- }
- ]
- },
- "18350": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Page#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Page#marginbottom"
- }
- ]
- },
- "18351": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Page#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Page#horizontalalignment"
- }
- ]
- },
- "18352": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Page#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Page#verticalalignment"
- }
- ]
- },
- "18353": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Page#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Page#visibility"
- }
- ]
- },
- "18354": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Page#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Page#opacity"
- }
- ]
- },
- "18355": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Page#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Page#rotate"
- }
- ]
- },
- "18356": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Page#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Page#rotatex"
- }
- ]
- },
- "18357": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Page#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Page#rotatey"
- }
- ]
- },
- "18358": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Page#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Page#perspective"
- }
- ]
- },
- "18359": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Page#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Page#translatex"
- }
- ]
- },
- "18360": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Page#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Page#translatey"
- }
- ]
- },
- "18361": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Page#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Page#scalex"
- }
- ]
- },
- "18362": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Page#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Page#scaley"
- }
- ]
- },
- "18363": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Page#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Page#originx"
- }
- ]
- },
- "18364": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Page#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Page#originy"
- }
- ]
- },
- "18365": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Page#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Page#isenabled"
- }
- ]
- },
- "18366": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Page#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Page#isuserinteractionenabled"
- }
- ]
- },
- "18367": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Page#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Page#iosoverflowsafeareaenabled"
- }
- ]
- },
- "18368": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Page#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Page#iosignoresafearea"
- }
- ]
- },
- "18369": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Page#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Page#islayoutvalid"
- }
- ]
- },
- "18370": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Page#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Page#csstype"
- }
- ]
- },
- "18371": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Page#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#cssclasses"
- }
- ]
- },
- "18372": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Page#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#csspseudoclasses"
- }
- ]
- },
- "18373": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Page#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Page#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18377": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Page#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Page#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18384": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Page#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Page#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "18386": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Page#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Page#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "18388": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Page#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Page#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "18390": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Page#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Page#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18394": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Page#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Page#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18400": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Page#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Page#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18404": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Page#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Page#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18410": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Page#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Page#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "18412": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Page#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Page#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "18415": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Page#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Page#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "18423": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Page#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Page#modal"
- }
- ]
- },
- "18424": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Page#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Page#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "18427": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Page#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Page#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "18430": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Page#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Page#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "18437": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Page#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Page#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "18439": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Page#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Page#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "18441": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Page#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Page#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "18444": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Page#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Page#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "18446": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Page#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Page#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "18458": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Page#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Page#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "18460": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Page#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Page#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "18462": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Page#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Page#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "18464": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Page#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Page#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18470": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Page#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Page#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18472": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Page#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Page#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "18474": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Page#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Page#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18476": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Page#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Page#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18479": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Page#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Page#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18549": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Page#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Page#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18555": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Page#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Page#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18560": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Page#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Page#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18562": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Page#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Page#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18564": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Page#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Page#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18567": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Page#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Page#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "18570": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Page#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Page#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "18574": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Page#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#testid"
- }
- ]
- },
- "18575": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Page#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#touchanimation"
- }
- ]
- },
- "18576": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Page#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#ignoretouchanimation"
- }
- ]
- },
- "18577": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Page#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#touchdelay"
- }
- ]
- },
- "18578": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Page#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#closemodalcallback"
- }
- ]
- },
- "18579": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Page#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Page#transitionid"
- }
- ]
- },
- "18580": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Page#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#islayoutvalid"
- }
- ]
- },
- "18581": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Page#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Page#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18583": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Page#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Page#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18586": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Page#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18594": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Page#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18602": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Page#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18610": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Page#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Page#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "18613": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Page#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Page#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18616": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Page#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Page#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18620": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Page#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Page#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18626": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Page#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Page#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18628": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Page#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Page#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18630": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Page#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Page#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18632": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Page#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Page#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "18636": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Page#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Page#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "18640": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Page#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Page#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "18644": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Page#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Page#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "18648": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Page#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Page#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18650": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Page#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Page#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18656": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Page#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Page#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18658": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Page#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Page#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18662": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Page#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#domnode"
- }
- ]
- },
- "18663": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Page#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#recyclenativeview"
- }
- ]
- },
- "18664": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Page#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Page#viewcontroller"
- }
- ]
- },
- "18665": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Page#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Page#nativeviewprotected"
- }
- ]
- },
- "18666": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Page#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Page#parent"
- }
- ]
- },
- "18667": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Page#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Page#iscollapsed"
- }
- ]
- },
- "18668": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Page#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Page#id"
- }
- ]
- },
- "18669": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Page#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Page#classname"
- }
- ]
- },
- "18670": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Page#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Page#sharedtransitiontag"
- }
- ]
- },
- "18671": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Page#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Page#sharedtransitionignore"
- }
- ]
- },
- "18672": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Page#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#domid"
- }
- ]
- },
- "18673": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Page#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#context"
- }
- ]
- },
- "18674": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Page#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#isaddedtonativevisualtree"
- }
- ]
- },
- "18675": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Page#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#cssstate"
- }
- ]
- },
- "18676": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Page#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#stylescope"
- }
- ]
- },
- "18681": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Page#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Page#suspendnativeupdatescount"
- }
- ]
- },
- "18682": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Page#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#isstylescopehost"
- }
- ]
- },
- "18683": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Page#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "18684": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Page#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#left"
- }
- ]
- },
- "18685": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Page#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#top"
- }
- ]
- },
- "18686": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Page#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveleft"
- }
- ]
- },
- "18687": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Page#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivetop"
- }
- ]
- },
- "18688": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Page#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#dock"
- }
- ]
- },
- "18689": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Page#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#row"
- }
- ]
- },
- "18690": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Page#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#col"
- }
- ]
- },
- "18691": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Page#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#column"
- }
- ]
- },
- "18692": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Page#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#rowspan"
- }
- ]
- },
- "18693": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Page#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#colspan"
- }
- ]
- },
- "18694": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Page#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#columnspan"
- }
- ]
- },
- "18695": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Page#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#order"
- }
- ]
- },
- "18696": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Page#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#flexgrow"
- }
- ]
- },
- "18697": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Page#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#flexshrink"
- }
- ]
- },
- "18698": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Page#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#flexwrapbefore"
- }
- ]
- },
- "18699": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Page#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#alignself"
- }
- ]
- },
- "18700": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Page#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#oldleft"
- }
- ]
- },
- "18701": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Page#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#oldtop"
- }
- ]
- },
- "18702": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Page#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#oldright"
- }
- ]
- },
- "18703": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Page#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#oldbottom"
- }
- ]
- },
- "18704": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Page#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#ignoreflexminwidthheightreset"
- }
- ]
- },
- "18705": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Page#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveminwidth"
- }
- ]
- },
- "18706": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Page#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveminheight"
- }
- ]
- },
- "18707": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Page#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivewidth"
- }
- ]
- },
- "18708": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Page#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveheight"
- }
- ]
- },
- "18709": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Page#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivemargintop"
- }
- ]
- },
- "18710": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Page#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivemarginright"
- }
- ]
- },
- "18711": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Page#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivemarginbottom"
- }
- ]
- },
- "18712": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Page#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivemarginleft"
- }
- ]
- },
- "18713": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Page#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivepaddingtop"
- }
- ]
- },
- "18714": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Page#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivepaddingright"
- }
- ]
- },
- "18715": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Page#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivepaddingbottom"
- }
- ]
- },
- "18716": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Page#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivepaddingleft"
- }
- ]
- },
- "18717": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Page#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectivebordertopwidth"
- }
- ]
- },
- "18718": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Page#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveborderrightwidth"
- }
- ]
- },
- "18719": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Page#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveborderbottomwidth"
- }
- ]
- },
- "18720": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Page#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#effectiveborderleftwidth"
- }
- ]
- },
- "18721": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Page#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#defaultpaddingtop"
- }
- ]
- },
- "18722": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Page#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#defaultpaddingright"
- }
- ]
- },
- "18723": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Page#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#defaultpaddingbottom"
- }
- ]
- },
- "18724": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Page#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#defaultpaddingleft"
- }
- ]
- },
- "18725": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Page#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "url": "/api/class/Page#ispaddingrelative"
- }
- ]
- },
- "18727": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Page#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Page#reusable"
- }
- ]
- },
- "18728": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Page#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Page#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "18732": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Page#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Page#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "18736": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Page#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Page#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "18738": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Page#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Page#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "18742": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Page#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Page#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "18744": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Page#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Page#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "18748": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Page#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Page#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "18752": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Page#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Page#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "18756": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Page#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Page#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18758": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Page#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Page#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18762": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Page#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Page#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18764": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Page#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Page#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18766": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Page#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Page#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18769": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Page#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Page#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18772": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Page#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Page#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "18778": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Page#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Page#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18780": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Page#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Page#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18782": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Page#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Page#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18785": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Page#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Page#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18788": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Page#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Page#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18792": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Page#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Page#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18795": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Page#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Page#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18799": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Page#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Page#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18803": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Page#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Page#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18806": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Page#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Page#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "18808": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Page#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Page#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18811": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Page#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Page#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18814": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Page#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Page#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18817": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Page#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Page#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "18819": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Page#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Page#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18821": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Page#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Page#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18823": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Page#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Page#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18828": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Page#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Page#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18831": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Page#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Page#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18834": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Page#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Page#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18837": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Page#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Page#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "18840": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Page#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Page#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18844": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Page#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Page#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18847": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Page#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Page#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18851": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Page#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Page#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18854": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Page#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Page#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18857": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Page#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Page#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18859": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Page#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Page#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "18863": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Page#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Page#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18866": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Page#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Page#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18868": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Page#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Page#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "18871": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Page#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Page#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "18874": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Page#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Page#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18878": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Page#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Page#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18886": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Page#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Page#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18890": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Page#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Page#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18895": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Page#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Page#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "18898": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Page#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Page#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "18903": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Page#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Page#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "PageBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Page.md b/content/api/class/Page.md
deleted file mode 100644
index 27a3ca30..00000000
--- a/content/api/class/Page.md
+++ /dev/null
@@ -1,290 +0,0 @@
----
-title: Page
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Page'
-layout: api
-seo:
- description: "Represents a logical unit for navigation (inside Frame)."
----
-
-
-
-
-
-
-navigatingToEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 16,
- "character": 11
- }
- ],
- "url": "/api/class/PageBase#navigatingtoevent"
- }
- ]
- },
- "18908": {
- "name": "navigatedToEvent",
- "type": "Property",
- "url": "/api/class/PageBase#navigatedtoevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "navigatedToEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 17,
- "character": 11
- }
- ],
- "url": "/api/class/PageBase#navigatedtoevent"
- }
- ]
- },
- "18909": {
- "name": "navigatingFromEvent",
- "type": "Property",
- "url": "/api/class/PageBase#navigatingfromevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "navigatingFromEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 18,
- "character": 11
- }
- ],
- "url": "/api/class/PageBase#navigatingfromevent"
- }
- ]
- },
- "18910": {
- "name": "navigatedFromEvent",
- "type": "Property",
- "url": "/api/class/PageBase#navigatedfromevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "navigatedFromEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 19,
- "character": 11
- }
- ],
- "url": "/api/class/PageBase#navigatedfromevent"
- }
- ]
- },
- "18911": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/PageBase#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/PageBase#layoutchangedevent"
- }
- ]
- },
- "18912": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/PageBase#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/PageBase#showingmodallyevent"
- }
- ]
- },
- "18913": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/PageBase#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/PageBase#shownmodallyevent"
- }
- ]
- },
- "18914": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityblurevent"
- }
- ]
- },
- "18915": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityfocusevent"
- }
- ]
- },
- "18916": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityfocuschangedevent"
- }
- ]
- },
- "18917": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/PageBase#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/PageBase#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "18926": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/PageBase#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/PageBase#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18934": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/PageBase#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/PageBase#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "18940": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/PageBase#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/PageBase#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "18944": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#accessibilityperformescapeevent"
- }
- ]
- },
- "18945": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/PageBase#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/PageBase#loadedevent"
- }
- ]
- },
- "18946": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/PageBase#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/PageBase#unloadedevent"
- }
- ]
- },
- "18947": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/PageBase#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/PageBase#createdevent"
- }
- ]
- },
- "18948": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/PageBase#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/PageBase#disposenativeviewevent"
- }
- ]
- },
- "18949": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/PageBase#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/PageBase#propertychangeevent"
- }
- ]
- },
- "18950": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/PageBase#on-8",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#on-8-on-9",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18958": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/PageBase#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18966": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/PageBase#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18974": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/PageBase#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18982": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/PageBase#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "18990": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/PageBase#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new PageBase(): PageBase",
- "url": "/api/class/PageBase#constructor-new-pagebase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "PageBase"
- }
- ]
- },
- "18994": {
- "name": "_frame",
- "type": "Property",
- "url": "/api/class/PageBase#frame",
- "flags": {},
- "signatures": [
- {
- "code": "_frame: Frame",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 22,
- "character": 4
- }
- ],
- "url": "/api/class/PageBase#frame"
- }
- ]
- },
- "18995": {
- "name": "actionBarHidden",
- "type": "Property",
- "url": "/api/class/PageBase#actionbarhidden",
- "flags": {},
- "signatures": [
- {
- "code": "actionBarHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 23,
- "character": 4
- }
- ],
- "url": "/api/class/PageBase#actionbarhidden"
- }
- ]
- },
- "18996": {
- "name": "enableSwipeBackNavigation",
- "type": "Property",
- "url": "/api/class/PageBase#enableswipebacknavigation",
- "flags": {},
- "signatures": [
- {
- "code": "enableSwipeBackNavigation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 24,
- "character": 4
- }
- ],
- "url": "/api/class/PageBase#enableswipebacknavigation"
- }
- ]
- },
- "18997": {
- "name": "backgroundSpanUnderStatusBar",
- "type": "Property",
- "url": "/api/class/PageBase#backgroundspanunderstatusbar",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundSpanUnderStatusBar: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 25,
- "character": 4
- }
- ],
- "url": "/api/class/PageBase#backgroundspanunderstatusbar"
- }
- ]
- },
- "18998": {
- "name": "hasActionBar",
- "type": "Property",
- "url": "/api/class/PageBase#hasactionbar",
- "flags": {},
- "signatures": [
- {
- "code": "hasActionBar: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 26,
- "character": 4
- }
- ],
- "url": "/api/class/PageBase#hasactionbar"
- }
- ]
- },
- "18999": {
- "name": "accessibilityAnnouncePageEnabled",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityannouncepageenabled",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityAnnouncePageEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 27,
- "character": 4
- }
- ],
- "url": "/api/class/PageBase#accessibilityannouncepageenabled"
- }
- ]
- },
- "19000": {
- "name": "navigationContext",
- "type": "Accessor",
- "url": "/api/class/PageBase#navigationcontext",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get navigationContext(): any",
- "url": "/api/class/PageBase#navigationcontext-navigationcontext-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 28,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "19002": {
- "name": "actionBar",
- "type": "Accessor",
- "url": "/api/class/PageBase#actionbar",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get actionBar(): ActionBar",
- "url": "/api/class/PageBase#actionbar-actionbar-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "ActionBar"
- }
- ]
- },
- "19006": {
- "name": "statusBarStyle",
- "type": "Accessor",
- "url": "/api/class/PageBase#statusbarstyle",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get statusBarStyle(): "dark" | "light"",
- "url": "/api/class/PageBase#statusbarstyle-statusbarstyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "19010": {
- "name": "androidStatusBarBackground",
- "type": "Accessor",
- "url": "/api/class/PageBase#androidstatusbarbackground",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get androidStatusBarBackground(): Color",
- "url": "/api/class/PageBase#androidstatusbarbackground-androidstatusbarbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 33,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "19014": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/PageBase#page",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/PageBase#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 35,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "19016": {
- "name": "_addChildFromBuilder",
- "type": "Method",
- "url": "/api/class/PageBase#addchildfrombuilder",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addChildFromBuilder(name: string, value: any): void",
- "url": "/api/class/PageBase#addchildfrombuilder-addchildfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 36,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19020": {
- "name": "getKeyframeAnimationWithName",
- "type": "Method",
- "url": "/api/class/PageBase#getkeyframeanimationwithname",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getKeyframeAnimationWithName(animationName: string): KeyframeAnimationInfo",
- "url": "/api/class/PageBase#getkeyframeanimationwithname-getkeyframeanimationwithname-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 37,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "animationName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "KeyframeAnimationInfo"
- }
- ]
- },
- "19023": {
- "name": "frame",
- "type": "Accessor",
- "url": "/api/class/PageBase#frame",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get frame(): Frame",
- "url": "/api/class/PageBase#frame-frame-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 38,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Frame"
- }
- ]
- },
- "19026": {
- "name": "onNavigatingTo",
- "type": "Method",
- "url": "/api/class/PageBase#onnavigatingto",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onNavigatingTo(\n context: any,\n isBackNavigation: boolean,\n bindingContext?: any\n): void",
- "url": "/api/class/PageBase#onnavigatingto-onnavigatingto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 40,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "isBackNavigation",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "bindingContext",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19031": {
- "name": "onNavigatedTo",
- "type": "Method",
- "url": "/api/class/PageBase#onnavigatedto",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onNavigatedTo(isBackNavigation: boolean): void",
- "url": "/api/class/PageBase#onnavigatedto-onnavigatedto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "isBackNavigation",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19034": {
- "name": "onNavigatingFrom",
- "type": "Method",
- "url": "/api/class/PageBase#onnavigatingfrom",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onNavigatingFrom(isBackNavigation: boolean): void",
- "url": "/api/class/PageBase#onnavigatingfrom-onnavigatingfrom-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 42,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "isBackNavigation",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19037": {
- "name": "onNavigatedFrom",
- "type": "Method",
- "url": "/api/class/PageBase#onnavigatedfrom",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onNavigatedFrom(isBackNavigation: boolean): void",
- "url": "/api/class/PageBase#onnavigatedfrom-onnavigatedfrom-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 43,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "isBackNavigation",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19040": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/PageBase#eachchildview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (child: View) => boolean): void",
- "url": "/api/class/PageBase#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19046": {
- "name": "_childrenCount",
- "type": "Accessor",
- "url": "/api/class/PageBase#childrencount",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get _childrenCount(): number",
- "url": "/api/class/PageBase#childrencount-childrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 45,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19048": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/PageBase#accessibilityscreenchanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(refocus?: boolean): void",
- "url": "/api/class/PageBase#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 46,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "refocus",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19051": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/PageBase#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "navigatingTo",\n callback: (args: NavigatedData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/PageBase#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 50,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatingTo\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "navigatedTo",\n callback: (args: NavigatedData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/PageBase#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 51,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatedTo\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "navigatingFrom",\n callback: (args: NavigatedData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/PageBase#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatingFrom\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "navigatedFrom",\n callback: (args: NavigatedData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/PageBase#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"navigatedFrom\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: NavigatedData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 54,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#on-on-7",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/page/page-common.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19101": {
- "name": "content",
- "type": "Property",
- "url": "/api/class/PageBase#content",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "content: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 4,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#content"
- }
- ]
- },
- "19102": {
- "name": "layoutView",
- "type": "Method",
- "url": "/api/class/PageBase#layoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutView(): View",
- "url": "/api/class/PageBase#layoutview-layoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "19115": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/PageBase#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/PageBase#iosoverflowsafearea"
- }
- ]
- },
- "19116": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/PageBase#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/PageBase#android"
- }
- ]
- },
- "19117": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/PageBase#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/PageBase#ios"
- }
- ]
- },
- "19118": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/PageBase#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/PageBase#bindingcontext"
- }
- ]
- },
- "19119": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/PageBase#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#bordercolor"
- }
- ]
- },
- "19120": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/PageBase#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#bordertopcolor"
- }
- ]
- },
- "19121": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/PageBase#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderrightcolor"
- }
- ]
- },
- "19122": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/PageBase#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderbottomcolor"
- }
- ]
- },
- "19123": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/PageBase#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderleftcolor"
- }
- ]
- },
- "19124": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/PageBase#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderwidth"
- }
- ]
- },
- "19125": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/PageBase#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#bordertopwidth"
- }
- ]
- },
- "19126": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/PageBase#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderrightwidth"
- }
- ]
- },
- "19127": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/PageBase#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderbottomwidth"
- }
- ]
- },
- "19128": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/PageBase#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderleftwidth"
- }
- ]
- },
- "19129": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/PageBase#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderradius"
- }
- ]
- },
- "19130": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/PageBase#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#bordertopleftradius"
- }
- ]
- },
- "19131": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/PageBase#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#bordertoprightradius"
- }
- ]
- },
- "19132": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/PageBase#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderbottomrightradius"
- }
- ]
- },
- "19133": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/PageBase#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#borderbottomleftradius"
- }
- ]
- },
- "19134": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/PageBase#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#color"
- }
- ]
- },
- "19135": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/PageBase#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/PageBase#accessible"
- }
- ]
- },
- "19136": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityhidden"
- }
- ]
- },
- "19137": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityidentifier"
- }
- ]
- },
- "19138": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityrole"
- }
- ]
- },
- "19139": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilitystate"
- }
- ]
- },
- "19140": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilitylabel"
- }
- ]
- },
- "19141": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityvalue"
- }
- ]
- },
- "19142": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilityhint"
- }
- ]
- },
- "19143": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#accessibilityliveregion"
- }
- ]
- },
- "19144": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilitylanguage"
- }
- ]
- },
- "19145": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/PageBase#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/PageBase#accessibilitymediasession"
- }
- ]
- },
- "19146": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/PageBase#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/PageBase#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "19147": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/PageBase#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/PageBase#iosaccessibilityminfontscale"
- }
- ]
- },
- "19148": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/PageBase#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/PageBase#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "19149": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/PageBase#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/PageBase#androidcontentdescriptionupdated"
- }
- ]
- },
- "19150": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/PageBase#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#automationtext"
- }
- ]
- },
- "19151": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/PageBase#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/PageBase#androidelevation"
- }
- ]
- },
- "19152": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/PageBase#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/PageBase#androiddynamicelevationoffset"
- }
- ]
- },
- "19153": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/PageBase#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/PageBase#background"
- }
- ]
- },
- "19154": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/PageBase#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#backgroundcolor"
- }
- ]
- },
- "19155": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/PageBase#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#backgroundimage"
- }
- ]
- },
- "19156": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/PageBase#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#boxshadow"
- }
- ]
- },
- "19157": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/PageBase#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/PageBase#minwidth"
- }
- ]
- },
- "19158": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/PageBase#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/PageBase#minheight"
- }
- ]
- },
- "19159": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/PageBase#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#width"
- }
- ]
- },
- "19160": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/PageBase#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#height"
- }
- ]
- },
- "19161": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/PageBase#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/PageBase#margin"
- }
- ]
- },
- "19162": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/PageBase#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/PageBase#marginleft"
- }
- ]
- },
- "19163": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/PageBase#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/PageBase#margintop"
- }
- ]
- },
- "19164": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/PageBase#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/PageBase#marginright"
- }
- ]
- },
- "19165": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/PageBase#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/PageBase#marginbottom"
- }
- ]
- },
- "19166": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/PageBase#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/PageBase#horizontalalignment"
- }
- ]
- },
- "19167": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/PageBase#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/PageBase#verticalalignment"
- }
- ]
- },
- "19168": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/PageBase#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#visibility"
- }
- ]
- },
- "19169": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/PageBase#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/PageBase#opacity"
- }
- ]
- },
- "19170": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/PageBase#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/PageBase#rotate"
- }
- ]
- },
- "19171": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/PageBase#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/PageBase#rotatex"
- }
- ]
- },
- "19172": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/PageBase#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/PageBase#rotatey"
- }
- ]
- },
- "19173": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/PageBase#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/PageBase#perspective"
- }
- ]
- },
- "19174": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/PageBase#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/PageBase#translatex"
- }
- ]
- },
- "19175": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/PageBase#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/PageBase#translatey"
- }
- ]
- },
- "19176": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/PageBase#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#scalex"
- }
- ]
- },
- "19177": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/PageBase#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#scaley"
- }
- ]
- },
- "19178": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/PageBase#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#originx"
- }
- ]
- },
- "19179": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/PageBase#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#originy"
- }
- ]
- },
- "19180": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/PageBase#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#isenabled"
- }
- ]
- },
- "19181": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/PageBase#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/PageBase#isuserinteractionenabled"
- }
- ]
- },
- "19182": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/PageBase#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/PageBase#iosoverflowsafeareaenabled"
- }
- ]
- },
- "19183": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/PageBase#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/PageBase#iosignoresafearea"
- }
- ]
- },
- "19184": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/PageBase#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/PageBase#islayoutvalid"
- }
- ]
- },
- "19185": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/PageBase#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/PageBase#csstype"
- }
- ]
- },
- "19186": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/PageBase#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#cssclasses"
- }
- ]
- },
- "19187": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/PageBase#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#csspseudoclasses"
- }
- ]
- },
- "19188": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/PageBase#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/PageBase#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19192": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/PageBase#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/PageBase#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19199": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/PageBase#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/PageBase#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19201": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/PageBase#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/PageBase#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19203": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/PageBase#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/PageBase#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19205": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/PageBase#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/PageBase#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19209": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/PageBase#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/PageBase#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19215": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/PageBase#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/PageBase#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19219": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/PageBase#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/PageBase#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19225": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/PageBase#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/PageBase#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19227": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/PageBase#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/PageBase#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "19230": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/PageBase#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/PageBase#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "19238": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/PageBase#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/PageBase#modal"
- }
- ]
- },
- "19239": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/PageBase#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/PageBase#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "19242": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/PageBase#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/PageBase#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "19245": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/PageBase#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/PageBase#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "19252": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/PageBase#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/PageBase#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "19254": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/PageBase#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/PageBase#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "19256": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/PageBase#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/PageBase#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "19259": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/PageBase#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/PageBase#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "19261": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/PageBase#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/PageBase#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19273": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/PageBase#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/PageBase#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19275": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/PageBase#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/PageBase#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19277": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/PageBase#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/PageBase#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "19279": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/PageBase#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/PageBase#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19285": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/PageBase#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/PageBase#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19287": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/PageBase#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/PageBase#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19289": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/PageBase#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/PageBase#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19291": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/PageBase#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/PageBase#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19294": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/PageBase#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/PageBase#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19364": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/PageBase#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/PageBase#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "19370": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/PageBase#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/PageBase#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19375": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/PageBase#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/PageBase#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19377": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/PageBase#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/PageBase#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19379": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/PageBase#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/PageBase#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "19382": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/PageBase#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/PageBase#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "19385": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/PageBase#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/PageBase#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "19389": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/PageBase#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#testid"
- }
- ]
- },
- "19390": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/PageBase#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#touchanimation"
- }
- ]
- },
- "19391": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/PageBase#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#ignoretouchanimation"
- }
- ]
- },
- "19392": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/PageBase#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#touchdelay"
- }
- ]
- },
- "19393": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/PageBase#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#closemodalcallback"
- }
- ]
- },
- "19394": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/PageBase#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/PageBase#transitionid"
- }
- ]
- },
- "19395": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/PageBase#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#islayoutvalid"
- }
- ]
- },
- "19396": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/PageBase#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/PageBase#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19398": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/PageBase#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/PageBase#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19401": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/PageBase#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19409": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/PageBase#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19417": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/PageBase#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19425": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/PageBase#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/PageBase#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "19428": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/PageBase#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/PageBase#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19431": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/PageBase#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/PageBase#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19435": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/PageBase#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/PageBase#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19441": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/PageBase#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/PageBase#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19443": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/PageBase#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/PageBase#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19445": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/PageBase#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/PageBase#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19447": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/PageBase#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/PageBase#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "19451": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/PageBase#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/PageBase#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "19455": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/PageBase#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/PageBase#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "19459": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/PageBase#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/PageBase#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "19463": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/PageBase#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/PageBase#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19465": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/PageBase#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/PageBase#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19471": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/PageBase#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/PageBase#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19473": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/PageBase#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/PageBase#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19477": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/PageBase#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#domnode"
- }
- ]
- },
- "19478": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/PageBase#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#recyclenativeview"
- }
- ]
- },
- "19479": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/PageBase#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/PageBase#viewcontroller"
- }
- ]
- },
- "19480": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/PageBase#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/PageBase#nativeviewprotected"
- }
- ]
- },
- "19481": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/PageBase#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/PageBase#parent"
- }
- ]
- },
- "19482": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/PageBase#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/PageBase#iscollapsed"
- }
- ]
- },
- "19483": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/PageBase#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/PageBase#id"
- }
- ]
- },
- "19484": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/PageBase#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/PageBase#classname"
- }
- ]
- },
- "19485": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/PageBase#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/PageBase#sharedtransitiontag"
- }
- ]
- },
- "19486": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/PageBase#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/PageBase#sharedtransitionignore"
- }
- ]
- },
- "19487": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/PageBase#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#domid"
- }
- ]
- },
- "19488": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/PageBase#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#context"
- }
- ]
- },
- "19489": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/PageBase#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#isaddedtonativevisualtree"
- }
- ]
- },
- "19490": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/PageBase#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#cssstate"
- }
- ]
- },
- "19491": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/PageBase#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#stylescope"
- }
- ]
- },
- "19496": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/PageBase#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/PageBase#suspendnativeupdatescount"
- }
- ]
- },
- "19497": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/PageBase#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#isstylescopehost"
- }
- ]
- },
- "19498": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/PageBase#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "19499": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/PageBase#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#left"
- }
- ]
- },
- "19500": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/PageBase#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#top"
- }
- ]
- },
- "19501": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveleft"
- }
- ]
- },
- "19502": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/PageBase#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivetop"
- }
- ]
- },
- "19503": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/PageBase#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#dock"
- }
- ]
- },
- "19504": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/PageBase#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#row"
- }
- ]
- },
- "19505": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/PageBase#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#col"
- }
- ]
- },
- "19506": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/PageBase#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#column"
- }
- ]
- },
- "19507": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/PageBase#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#rowspan"
- }
- ]
- },
- "19508": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/PageBase#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#colspan"
- }
- ]
- },
- "19509": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/PageBase#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#columnspan"
- }
- ]
- },
- "19510": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/PageBase#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#order"
- }
- ]
- },
- "19511": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/PageBase#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#flexgrow"
- }
- ]
- },
- "19512": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/PageBase#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#flexshrink"
- }
- ]
- },
- "19513": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/PageBase#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#flexwrapbefore"
- }
- ]
- },
- "19514": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/PageBase#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#alignself"
- }
- ]
- },
- "19515": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/PageBase#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#oldleft"
- }
- ]
- },
- "19516": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/PageBase#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#oldtop"
- }
- ]
- },
- "19517": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/PageBase#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#oldright"
- }
- ]
- },
- "19518": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/PageBase#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#oldbottom"
- }
- ]
- },
- "19519": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/PageBase#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#ignoreflexminwidthheightreset"
- }
- ]
- },
- "19520": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveminwidth"
- }
- ]
- },
- "19521": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveminheight"
- }
- ]
- },
- "19522": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/PageBase#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivewidth"
- }
- ]
- },
- "19523": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveheight"
- }
- ]
- },
- "19524": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/PageBase#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivemargintop"
- }
- ]
- },
- "19525": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/PageBase#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivemarginright"
- }
- ]
- },
- "19526": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/PageBase#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivemarginbottom"
- }
- ]
- },
- "19527": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/PageBase#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivemarginleft"
- }
- ]
- },
- "19528": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/PageBase#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivepaddingtop"
- }
- ]
- },
- "19529": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/PageBase#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivepaddingright"
- }
- ]
- },
- "19530": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/PageBase#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivepaddingbottom"
- }
- ]
- },
- "19531": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/PageBase#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivepaddingleft"
- }
- ]
- },
- "19532": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/PageBase#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectivebordertopwidth"
- }
- ]
- },
- "19533": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveborderrightwidth"
- }
- ]
- },
- "19534": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveborderbottomwidth"
- }
- ]
- },
- "19535": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/PageBase#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#effectiveborderleftwidth"
- }
- ]
- },
- "19536": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/PageBase#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#defaultpaddingtop"
- }
- ]
- },
- "19537": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/PageBase#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#defaultpaddingright"
- }
- ]
- },
- "19538": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/PageBase#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#defaultpaddingbottom"
- }
- ]
- },
- "19539": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/PageBase#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#defaultpaddingleft"
- }
- ]
- },
- "19540": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/PageBase#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/PageBase#ispaddingrelative"
- }
- ]
- },
- "19542": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/PageBase#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/PageBase#reusable"
- }
- ]
- },
- "19543": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/PageBase#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/PageBase#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "19547": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/PageBase#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/PageBase#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "19551": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/PageBase#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/PageBase#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "19553": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/PageBase#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/PageBase#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "19557": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/PageBase#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/PageBase#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19559": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/PageBase#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/PageBase#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "19563": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/PageBase#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/PageBase#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "19567": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/PageBase#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/PageBase#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "19571": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/PageBase#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/PageBase#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19573": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/PageBase#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/PageBase#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19577": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/PageBase#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/PageBase#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19579": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/PageBase#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/PageBase#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19581": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/PageBase#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/PageBase#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19584": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/PageBase#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/PageBase#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19587": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/PageBase#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/PageBase#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "19593": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/PageBase#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/PageBase#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19595": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/PageBase#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/PageBase#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19597": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/PageBase#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/PageBase#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19600": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/PageBase#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/PageBase#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19603": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/PageBase#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/PageBase#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19607": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/PageBase#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/PageBase#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19610": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/PageBase#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/PageBase#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19614": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/PageBase#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/PageBase#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19618": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/PageBase#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/PageBase#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19621": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/PageBase#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/PageBase#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19623": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/PageBase#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/PageBase#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19626": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/PageBase#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/PageBase#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19629": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/PageBase#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/PageBase#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19632": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/PageBase#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/PageBase#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "19634": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/PageBase#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/PageBase#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19636": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/PageBase#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/PageBase#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19638": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/PageBase#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/PageBase#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19643": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/PageBase#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/PageBase#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19646": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/PageBase#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/PageBase#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19649": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/PageBase#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/PageBase#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19652": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/PageBase#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/PageBase#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "19655": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/PageBase#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/PageBase#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "19659": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/PageBase#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/PageBase#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19662": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/PageBase#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/PageBase#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "19666": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/PageBase#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/PageBase#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19669": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/PageBase#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/PageBase#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19672": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/PageBase#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/PageBase#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19674": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/PageBase#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/PageBase#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "19678": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/PageBase#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/PageBase#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19681": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/PageBase#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/PageBase#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19683": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/PageBase#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/PageBase#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19686": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/PageBase#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/PageBase#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "19689": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/PageBase#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/PageBase#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19693": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/PageBase#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/PageBase#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19701": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/PageBase#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/PageBase#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19705": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/PageBase#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/PageBase#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19710": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/PageBase#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/PageBase#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "19713": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/PageBase#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/PageBase#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "19718": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/PageBase#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/PageBase#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/PageBase.md b/content/api/class/PageBase.md
deleted file mode 100644
index 78713b8b..00000000
--- a/content/api/class/PageBase.md
+++ /dev/null
@@ -1,402 +0,0 @@
----
-title: PageBase
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'PageBase'
-layout: api
-seo:
- description: PageBase
----
-
-
-
-
-
-
-AndroidTransitionType?: {\n enter?: string\n exit?: string\n popEnter?: string\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "name": "AndroidTransitionType",
- "url": "/api/class/Transition#androidtransitiontype",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#androidtransitiontype"
- }
- ]
- },
- "32459": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/PageTransition#constructor",
- "flags": {},
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Transition#constructor",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new PageTransition(duration?: number, nativeCurve?: any): PageTransition",
- "url": "/api/class/PageTransition#constructor-new-pagetransition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "constructor",
- "url": "/api/class/Transition#constructor",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "duration",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "nativeCurve",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PageTransition"
- }
- ]
- },
- "32463": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/PageTransition#id",
- "flags": {},
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "id: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#id"
- }
- ]
- },
- "32464": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/PageTransition#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "name?: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "url": "/api/class/PageTransition#name"
- }
- ]
- },
- "32465": {
- "name": "transitionController",
- "type": "Property",
- "url": "/api/class/PageTransition#transitioncontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "transitionController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#transitioncontroller"
- }
- ]
- },
- "32466": {
- "name": "interactiveController",
- "type": "Property",
- "url": "/api/class/PageTransition#interactivecontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "interactiveController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#interactivecontroller"
- }
- ]
- },
- "32467": {
- "name": "presented",
- "type": "Property",
- "url": "/api/class/PageTransition#presented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presented?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#presented"
- }
- ]
- },
- "32468": {
- "name": "presenting",
- "type": "Property",
- "url": "/api/class/PageTransition#presenting",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presenting?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#presenting"
- }
- ]
- },
- "32469": {
- "name": "sharedElements",
- "type": "Property",
- "url": "/api/class/PageTransition#sharedelements",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "sharedElements?: {\n independent?: (SharedElementSettings & {})[]\n presented?: SharedElementSettings[]\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 32,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/PageTransition#sharedelements"
- }
- ]
- },
- "32476": {
- "name": "getDuration",
- "type": "Method",
- "url": "/api/class/PageTransition#getduration",
- "flags": {},
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getDuration(): number",
- "url": "/api/class/PageTransition#getduration-getduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32478": {
- "name": "setDuration",
- "type": "Method",
- "url": "/api/class/PageTransition#setduration",
- "flags": {},
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setDuration(value: number): void",
- "url": "/api/class/PageTransition#setduration-setduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32481": {
- "name": "getCurve",
- "type": "Method",
- "url": "/api/class/PageTransition#getcurve",
- "flags": {},
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCurve(): any",
- "url": "/api/class/PageTransition#getcurve-getcurve-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 42,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32483": {
- "name": "animateIOSTransition",
- "type": "Method",
- "url": "/api/class/PageTransition#animateiostransition",
- "flags": {},
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animateIOSTransition(\n transitionContext: any,\n fromViewCtrl: any,\n toViewCtrl: any,\n operation: any\n): void",
- "url": "/api/class/PageTransition#animateiostransition-animateiostransition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionContext",
- "type": "any",
- "flags": {}
- },
- {
- "name": "fromViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32489": {
- "name": "createAndroidAnimator",
- "type": "Method",
- "url": "/api/class/PageTransition#createandroidanimator",
- "flags": {},
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAndroidAnimator(transitionType: string): any",
- "url": "/api/class/PageTransition#createandroidanimator-createandroidanimator-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionType",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32492": {
- "name": "setupInteractiveGesture",
- "type": "Method",
- "url": "/api/class/PageTransition#setupinteractivegesture",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setupInteractiveGesture(startCallback: () => void, view: View): void",
- "url": "/api/class/PageTransition#setupinteractivegesture-setupinteractivegesture-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "startCallback",
- "type": "() => void",
- "flags": {}
- },
- {
- "name": "view",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32498": {
- "name": "iosDismissedController",
- "type": "Method",
- "url": "/api/class/PageTransition#iosdismissedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosDismissedController(dismissed: any): any",
- "url": "/api/class/PageTransition#iosdismissedcontroller-iosdismissedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "dismissed",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32501": {
- "name": "iosPresentedController",
- "type": "Method",
- "url": "/api/class/PageTransition#iospresentedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosPresentedController(presented: any, presenting: any, source: any): any",
- "url": "/api/class/PageTransition#iospresentedcontroller-iospresentedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "presented",
- "type": "any",
- "flags": {}
- },
- {
- "name": "presenting",
- "type": "any",
- "flags": {}
- },
- {
- "name": "source",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32506": {
- "name": "iosInteractionDismiss",
- "type": "Method",
- "url": "/api/class/PageTransition#iosinteractiondismiss",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionDismiss(animator: any): any",
- "url": "/api/class/PageTransition#iosinteractiondismiss-iosinteractiondismiss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32509": {
- "name": "iosInteractionPresented",
- "type": "Method",
- "url": "/api/class/PageTransition#iosinteractionpresented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionPresented(animator: any): any",
- "url": "/api/class/PageTransition#iosinteractionpresented-iosinteractionpresented-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32512": {
- "name": "iosNavigatedController",
- "type": "Method",
- "url": "/api/class/PageTransition#iosnavigatedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosNavigatedController(\n navigationController: any,\n operation: number,\n fromVC: any,\n toVC: any\n): any",
- "url": "/api/class/PageTransition#iosnavigatedcontroller-iosnavigatedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "navigationController",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "number",
- "flags": {}
- },
- {
- "name": "fromVC",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toVC",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32518": {
- "name": "androidFragmentTransactionCallback",
- "type": "Method",
- "url": "/api/class/PageTransition#androidfragmenttransactioncallback",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "androidFragmentTransactionCallback(fragmentTransaction: any, currentEntry: BackstackEntry, newEntry: BackstackEntry): void",
- "url": "/api/class/PageTransition#androidfragmenttransactioncallback-androidfragmenttransactioncallback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "fragmentTransaction",
- "type": "any",
- "flags": {}
- },
- {
- "name": "currentEntry",
- "type": "BackstackEntry",
- "flags": {}
- },
- {
- "name": "newEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/PageTransition.md b/content/api/class/PageTransition.md
deleted file mode 100644
index 712a540e..00000000
--- a/content/api/class/PageTransition.md
+++ /dev/null
@@ -1,46 +0,0 @@
----
-title: PageTransition
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'PageTransition'
-layout: api
-seo:
- description: PageTransition
----
-
-
-
-
-
-
-StartElement: string",
- "sources": [
- {
- "fileName": "@nativescript/core/xml/index.d.ts",
- "line": 12,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the StartElement event type."
- }
- ]
- },
- "url": "/api/class/ParserEventType#startelement"
- }
- ]
- },
- "2854": {
- "name": "EndElement",
- "type": "Property",
- "url": "/api/class/ParserEventType#endelement",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the EndElement event type."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "EndElement: string",
- "sources": [
- {
- "fileName": "@nativescript/core/xml/index.d.ts",
- "line": 17,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the EndElement event type."
- }
- ]
- },
- "url": "/api/class/ParserEventType#endelement"
- }
- ]
- },
- "2855": {
- "name": "Text",
- "type": "Property",
- "url": "/api/class/ParserEventType#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the Text event type."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "Text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/xml/index.d.ts",
- "line": 22,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the Text event type."
- }
- ]
- },
- "url": "/api/class/ParserEventType#text"
- }
- ]
- },
- "2856": {
- "name": "CDATA",
- "type": "Property",
- "url": "/api/class/ParserEventType#cdata",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the CDATA event type."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "CDATA: string",
- "sources": [
- {
- "fileName": "@nativescript/core/xml/index.d.ts",
- "line": 27,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the CDATA event type."
- }
- ]
- },
- "url": "/api/class/ParserEventType#cdata"
- }
- ]
- },
- "2857": {
- "name": "Comment",
- "type": "Property",
- "url": "/api/class/ParserEventType#comment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the Comment event type."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "Comment: string",
- "sources": [
- {
- "fileName": "@nativescript/core/xml/index.d.ts",
- "line": 32,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies the Comment event type."
- }
- ]
- },
- "url": "/api/class/ParserEventType#comment"
- }
- ]
- },
- "2858": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ParserEventType#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ParserEventType(): ParserEventType",
- "url": "/api/class/ParserEventType#constructor-new-parsereventtype",
- "parameters": [],
- "returns": "ParserEventType"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ParserEventType.md b/content/api/class/ParserEventType.md
deleted file mode 100644
index 998db15e..00000000
--- a/content/api/class/ParserEventType.md
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: ParserEventType
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ParserEventType'
-layout: api
-seo:
- description: "Specifies the type of parser event."
----
-
-
-
-
-
-
-creatingViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/placeholder/index.d.ts",
- "line": 13,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creatingView event."
- }
- ]
- },
- "url": "/api/class/Placeholder#creatingviewevent"
- }
- ]
- },
- "19728": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Placeholder#layoutchangedevent"
- }
- ]
- },
- "19729": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Placeholder#showingmodallyevent"
- }
- ]
- },
- "19730": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Placeholder#shownmodallyevent"
- }
- ]
- },
- "19731": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityblurevent"
- }
- ]
- },
- "19732": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityfocusevent"
- }
- ]
- },
- "19733": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityfocuschangedevent"
- }
- ]
- },
- "19734": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Placeholder#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Placeholder#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "19743": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Placeholder#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Placeholder#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19751": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Placeholder#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Placeholder#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "19757": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Placeholder#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Placeholder#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "19761": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#accessibilityperformescapeevent"
- }
- ]
- },
- "19762": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Placeholder#loadedevent"
- }
- ]
- },
- "19763": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Placeholder#unloadedevent"
- }
- ]
- },
- "19764": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Placeholder#createdevent"
- }
- ]
- },
- "19765": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Placeholder#disposenativeviewevent"
- }
- ]
- },
- "19766": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Placeholder#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Placeholder#propertychangeevent"
- }
- ]
- },
- "19767": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Placeholder#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19775": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Placeholder#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19783": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Placeholder#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19791": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Placeholder#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19799": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Placeholder#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19807": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Placeholder#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Placeholder(): Placeholder",
- "url": "/api/class/Placeholder#constructor-new-placeholder",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "Placeholder"
- }
- ]
- },
- "19809": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Placeholder#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/placeholder/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"creatingView\", callback: (args: CreateViewEventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/placeholder/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a creatingView event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"creatingView\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: CreateViewEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19824": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Placeholder#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/Placeholder#android"
- }
- ]
- },
- "19825": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Placeholder#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/Placeholder#ios"
- }
- ]
- },
- "19826": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Placeholder#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Placeholder#bindingcontext"
- }
- ]
- },
- "19827": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Placeholder#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#bordercolor"
- }
- ]
- },
- "19828": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Placeholder#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#bordertopcolor"
- }
- ]
- },
- "19829": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Placeholder#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderrightcolor"
- }
- ]
- },
- "19830": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Placeholder#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderbottomcolor"
- }
- ]
- },
- "19831": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Placeholder#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderleftcolor"
- }
- ]
- },
- "19832": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderwidth"
- }
- ]
- },
- "19833": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#bordertopwidth"
- }
- ]
- },
- "19834": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderrightwidth"
- }
- ]
- },
- "19835": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderbottomwidth"
- }
- ]
- },
- "19836": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderleftwidth"
- }
- ]
- },
- "19837": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Placeholder#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderradius"
- }
- ]
- },
- "19838": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Placeholder#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#bordertopleftradius"
- }
- ]
- },
- "19839": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Placeholder#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#bordertoprightradius"
- }
- ]
- },
- "19840": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Placeholder#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderbottomrightradius"
- }
- ]
- },
- "19841": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Placeholder#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#borderbottomleftradius"
- }
- ]
- },
- "19842": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Placeholder#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#color"
- }
- ]
- },
- "19843": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Placeholder#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessible"
- }
- ]
- },
- "19844": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityhidden"
- }
- ]
- },
- "19845": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityidentifier"
- }
- ]
- },
- "19846": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityrole"
- }
- ]
- },
- "19847": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilitystate"
- }
- ]
- },
- "19848": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilitylabel"
- }
- ]
- },
- "19849": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityvalue"
- }
- ]
- },
- "19850": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilityhint"
- }
- ]
- },
- "19851": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#accessibilityliveregion"
- }
- ]
- },
- "19852": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilitylanguage"
- }
- ]
- },
- "19853": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Placeholder#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Placeholder#accessibilitymediasession"
- }
- ]
- },
- "19854": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Placeholder#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Placeholder#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "19855": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Placeholder#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Placeholder#iosaccessibilityminfontscale"
- }
- ]
- },
- "19856": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Placeholder#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Placeholder#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "19857": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Placeholder#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Placeholder#androidcontentdescriptionupdated"
- }
- ]
- },
- "19858": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Placeholder#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#automationtext"
- }
- ]
- },
- "19859": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Placeholder#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Placeholder#androidelevation"
- }
- ]
- },
- "19860": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Placeholder#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Placeholder#androiddynamicelevationoffset"
- }
- ]
- },
- "19861": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Placeholder#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Placeholder#background"
- }
- ]
- },
- "19862": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Placeholder#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#backgroundcolor"
- }
- ]
- },
- "19863": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Placeholder#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#backgroundimage"
- }
- ]
- },
- "19864": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Placeholder#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#boxshadow"
- }
- ]
- },
- "19865": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Placeholder#minwidth"
- }
- ]
- },
- "19866": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Placeholder#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Placeholder#minheight"
- }
- ]
- },
- "19867": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Placeholder#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#width"
- }
- ]
- },
- "19868": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Placeholder#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#height"
- }
- ]
- },
- "19869": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Placeholder#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Placeholder#margin"
- }
- ]
- },
- "19870": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Placeholder#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Placeholder#marginleft"
- }
- ]
- },
- "19871": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Placeholder#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Placeholder#margintop"
- }
- ]
- },
- "19872": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Placeholder#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Placeholder#marginright"
- }
- ]
- },
- "19873": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Placeholder#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Placeholder#marginbottom"
- }
- ]
- },
- "19874": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Placeholder#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Placeholder#horizontalalignment"
- }
- ]
- },
- "19875": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Placeholder#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Placeholder#verticalalignment"
- }
- ]
- },
- "19876": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Placeholder#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#visibility"
- }
- ]
- },
- "19877": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Placeholder#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Placeholder#opacity"
- }
- ]
- },
- "19878": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Placeholder#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Placeholder#rotate"
- }
- ]
- },
- "19879": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Placeholder#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Placeholder#rotatex"
- }
- ]
- },
- "19880": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Placeholder#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Placeholder#rotatey"
- }
- ]
- },
- "19881": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Placeholder#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Placeholder#perspective"
- }
- ]
- },
- "19882": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Placeholder#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Placeholder#translatex"
- }
- ]
- },
- "19883": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Placeholder#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Placeholder#translatey"
- }
- ]
- },
- "19884": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Placeholder#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#scalex"
- }
- ]
- },
- "19885": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Placeholder#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#scaley"
- }
- ]
- },
- "19886": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Placeholder#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#originx"
- }
- ]
- },
- "19887": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Placeholder#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#originy"
- }
- ]
- },
- "19888": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Placeholder#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#isenabled"
- }
- ]
- },
- "19889": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Placeholder#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Placeholder#isuserinteractionenabled"
- }
- ]
- },
- "19890": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Placeholder#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Placeholder#iosoverflowsafearea"
- }
- ]
- },
- "19891": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Placeholder#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Placeholder#iosoverflowsafeareaenabled"
- }
- ]
- },
- "19892": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Placeholder#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Placeholder#iosignoresafearea"
- }
- ]
- },
- "19893": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Placeholder#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Placeholder#islayoutvalid"
- }
- ]
- },
- "19894": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Placeholder#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Placeholder#csstype"
- }
- ]
- },
- "19895": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Placeholder#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#cssclasses"
- }
- ]
- },
- "19896": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Placeholder#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#csspseudoclasses"
- }
- ]
- },
- "19897": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Placeholder#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Placeholder#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19901": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Placeholder#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Placeholder#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19908": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Placeholder#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Placeholder#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19910": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Placeholder#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Placeholder#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19912": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Placeholder#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Placeholder#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19914": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Placeholder#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Placeholder#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19918": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Placeholder#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Placeholder#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19924": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Placeholder#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Placeholder#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19928": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Placeholder#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Placeholder#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19934": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Placeholder#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Placeholder#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19936": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Placeholder#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Placeholder#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "19939": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Placeholder#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Placeholder#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "19947": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Placeholder#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Placeholder#modal"
- }
- ]
- },
- "19948": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Placeholder#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Placeholder#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "19951": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Placeholder#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Placeholder#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "19954": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Placeholder#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Placeholder#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "19961": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Placeholder#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Placeholder#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "19963": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Placeholder#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Placeholder#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "19965": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Placeholder#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Placeholder#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "19968": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Placeholder#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Placeholder#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "19970": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Placeholder#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Placeholder#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19982": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Placeholder#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Placeholder#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "19984": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Placeholder#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Placeholder#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19986": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Placeholder#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Placeholder#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "19988": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Placeholder#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Placeholder#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "19994": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Placeholder#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Placeholder#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "19996": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Placeholder#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Placeholder#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "19998": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Placeholder#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Placeholder#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20000": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Placeholder#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Placeholder#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20006": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Placeholder#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Placeholder#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20009": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Placeholder#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Placeholder#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20012": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Placeholder#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Placeholder#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20081": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Placeholder#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Placeholder#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20087": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Placeholder#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Placeholder#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20092": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Placeholder#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Placeholder#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20094": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Placeholder#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Placeholder#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20096": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Placeholder#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Placeholder#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20099": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Placeholder#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Placeholder#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "20102": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Placeholder#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Placeholder#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "20106": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Placeholder#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#testid"
- }
- ]
- },
- "20107": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Placeholder#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#touchanimation"
- }
- ]
- },
- "20108": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Placeholder#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#ignoretouchanimation"
- }
- ]
- },
- "20109": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Placeholder#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#touchdelay"
- }
- ]
- },
- "20110": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Placeholder#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#closemodalcallback"
- }
- ]
- },
- "20111": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Placeholder#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Placeholder#transitionid"
- }
- ]
- },
- "20112": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Placeholder#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#islayoutvalid"
- }
- ]
- },
- "20113": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Placeholder#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Placeholder#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20115": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Placeholder#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Placeholder#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20118": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Placeholder#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20126": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Placeholder#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20134": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Placeholder#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20142": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Placeholder#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Placeholder#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "20145": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Placeholder#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Placeholder#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20148": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Placeholder#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Placeholder#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20152": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Placeholder#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Placeholder#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20158": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Placeholder#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Placeholder#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20160": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Placeholder#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Placeholder#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20162": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Placeholder#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Placeholder#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20164": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Placeholder#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Placeholder#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20168": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Placeholder#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Placeholder#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20172": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Placeholder#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Placeholder#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "20176": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Placeholder#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Placeholder#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "20180": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Placeholder#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Placeholder#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20182": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Placeholder#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Placeholder#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20188": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Placeholder#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Placeholder#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20190": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Placeholder#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Placeholder#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20194": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Placeholder#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#domnode"
- }
- ]
- },
- "20195": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Placeholder#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#recyclenativeview"
- }
- ]
- },
- "20196": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Placeholder#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Placeholder#viewcontroller"
- }
- ]
- },
- "20197": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Placeholder#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Placeholder#nativeviewprotected"
- }
- ]
- },
- "20198": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Placeholder#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Placeholder#parent"
- }
- ]
- },
- "20199": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Placeholder#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Placeholder#iscollapsed"
- }
- ]
- },
- "20200": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Placeholder#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Placeholder#id"
- }
- ]
- },
- "20201": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Placeholder#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Placeholder#classname"
- }
- ]
- },
- "20202": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Placeholder#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Placeholder#sharedtransitiontag"
- }
- ]
- },
- "20203": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Placeholder#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Placeholder#sharedtransitionignore"
- }
- ]
- },
- "20204": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Placeholder#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#domid"
- }
- ]
- },
- "20205": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Placeholder#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#context"
- }
- ]
- },
- "20206": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Placeholder#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#isaddedtonativevisualtree"
- }
- ]
- },
- "20207": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Placeholder#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#cssstate"
- }
- ]
- },
- "20208": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Placeholder#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#stylescope"
- }
- ]
- },
- "20213": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Placeholder#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Placeholder#suspendnativeupdatescount"
- }
- ]
- },
- "20214": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Placeholder#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#isstylescopehost"
- }
- ]
- },
- "20215": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Placeholder#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "20216": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Placeholder#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#left"
- }
- ]
- },
- "20217": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Placeholder#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#top"
- }
- ]
- },
- "20218": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveleft"
- }
- ]
- },
- "20219": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivetop"
- }
- ]
- },
- "20220": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Placeholder#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#dock"
- }
- ]
- },
- "20221": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Placeholder#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#row"
- }
- ]
- },
- "20222": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Placeholder#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#col"
- }
- ]
- },
- "20223": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Placeholder#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#column"
- }
- ]
- },
- "20224": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Placeholder#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#rowspan"
- }
- ]
- },
- "20225": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Placeholder#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#colspan"
- }
- ]
- },
- "20226": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Placeholder#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#columnspan"
- }
- ]
- },
- "20227": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Placeholder#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#order"
- }
- ]
- },
- "20228": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Placeholder#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#flexgrow"
- }
- ]
- },
- "20229": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Placeholder#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#flexshrink"
- }
- ]
- },
- "20230": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Placeholder#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#flexwrapbefore"
- }
- ]
- },
- "20231": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Placeholder#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#alignself"
- }
- ]
- },
- "20232": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Placeholder#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#oldleft"
- }
- ]
- },
- "20233": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Placeholder#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#oldtop"
- }
- ]
- },
- "20234": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Placeholder#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#oldright"
- }
- ]
- },
- "20235": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Placeholder#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#oldbottom"
- }
- ]
- },
- "20236": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Placeholder#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#ignoreflexminwidthheightreset"
- }
- ]
- },
- "20237": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveminwidth"
- }
- ]
- },
- "20238": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveminheight"
- }
- ]
- },
- "20239": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivewidth"
- }
- ]
- },
- "20240": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveheight"
- }
- ]
- },
- "20241": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivemargintop"
- }
- ]
- },
- "20242": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivemarginright"
- }
- ]
- },
- "20243": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivemarginbottom"
- }
- ]
- },
- "20244": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivemarginleft"
- }
- ]
- },
- "20245": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivepaddingtop"
- }
- ]
- },
- "20246": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivepaddingright"
- }
- ]
- },
- "20247": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivepaddingbottom"
- }
- ]
- },
- "20248": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivepaddingleft"
- }
- ]
- },
- "20249": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectivebordertopwidth"
- }
- ]
- },
- "20250": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveborderrightwidth"
- }
- ]
- },
- "20251": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveborderbottomwidth"
- }
- ]
- },
- "20252": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Placeholder#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#effectiveborderleftwidth"
- }
- ]
- },
- "20253": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Placeholder#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#defaultpaddingtop"
- }
- ]
- },
- "20254": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Placeholder#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#defaultpaddingright"
- }
- ]
- },
- "20255": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Placeholder#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#defaultpaddingbottom"
- }
- ]
- },
- "20256": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Placeholder#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#defaultpaddingleft"
- }
- ]
- },
- "20257": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Placeholder#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Placeholder#ispaddingrelative"
- }
- ]
- },
- "20259": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Placeholder#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Placeholder#reusable"
- }
- ]
- },
- "20260": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Placeholder#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Placeholder#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "20264": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Placeholder#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Placeholder#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "20268": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Placeholder#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Placeholder#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20270": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Placeholder#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Placeholder#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "20274": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Placeholder#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Placeholder#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "20276": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Placeholder#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Placeholder#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20280": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Placeholder#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Placeholder#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "20284": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Placeholder#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Placeholder#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "20288": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Placeholder#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Placeholder#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "20290": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Placeholder#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Placeholder#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20292": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Placeholder#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Placeholder#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20296": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Placeholder#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Placeholder#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20298": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Placeholder#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Placeholder#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20300": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Placeholder#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Placeholder#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20303": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Placeholder#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Placeholder#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20306": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Placeholder#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Placeholder#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "20312": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Placeholder#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Placeholder#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20314": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Placeholder#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Placeholder#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20316": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Placeholder#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Placeholder#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20319": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Placeholder#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Placeholder#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20322": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Placeholder#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Placeholder#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20326": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Placeholder#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Placeholder#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20329": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Placeholder#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Placeholder#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20333": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Placeholder#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Placeholder#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20337": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Placeholder#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Placeholder#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20340": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Placeholder#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Placeholder#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "20342": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Placeholder#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Placeholder#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20345": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Placeholder#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Placeholder#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20348": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Placeholder#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Placeholder#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20351": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Placeholder#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Placeholder#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "20353": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Placeholder#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Placeholder#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20355": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Placeholder#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Placeholder#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20357": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Placeholder#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Placeholder#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20362": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Placeholder#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Placeholder#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20365": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Placeholder#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Placeholder#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20368": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Placeholder#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Placeholder#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20371": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Placeholder#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Placeholder#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "20374": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Placeholder#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Placeholder#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20378": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Placeholder#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Placeholder#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20381": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Placeholder#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Placeholder#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20385": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Placeholder#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Placeholder#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20388": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Placeholder#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Placeholder#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20391": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Placeholder#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Placeholder#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20393": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Placeholder#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Placeholder#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20397": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Placeholder#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Placeholder#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20400": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Placeholder#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Placeholder#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20402": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Placeholder#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Placeholder#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20405": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Placeholder#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Placeholder#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "20408": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Placeholder#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Placeholder#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20412": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Placeholder#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Placeholder#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20420": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Placeholder#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Placeholder#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20424": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Placeholder#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Placeholder#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20429": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Placeholder#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Placeholder#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20432": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Placeholder#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Placeholder#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "20437": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Placeholder#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Placeholder#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Placeholder.md b/content/api/class/Placeholder.md
deleted file mode 100644
index ad6c0c9e..00000000
--- a/content/api/class/Placeholder.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: Placeholder
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Placeholder'
-layout: api
-seo:
- description: "Represents a Placeholder, which is used to add a native view to the visual tree."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Progress#layoutchangedevent"
- }
- ]
- },
- "20447": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Progress#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Progress#showingmodallyevent"
- }
- ]
- },
- "20448": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Progress#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Progress#shownmodallyevent"
- }
- ]
- },
- "20449": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityblurevent"
- }
- ]
- },
- "20450": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityfocusevent"
- }
- ]
- },
- "20451": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityfocuschangedevent"
- }
- ]
- },
- "20452": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Progress#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Progress#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "20461": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Progress#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Progress#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20469": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Progress#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Progress#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "20475": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Progress#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Progress#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "20479": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#accessibilityperformescapeevent"
- }
- ]
- },
- "20480": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Progress#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Progress#loadedevent"
- }
- ]
- },
- "20481": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Progress#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Progress#unloadedevent"
- }
- ]
- },
- "20482": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Progress#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Progress#createdevent"
- }
- ]
- },
- "20483": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Progress#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Progress#disposenativeviewevent"
- }
- ]
- },
- "20484": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Progress#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Progress#propertychangeevent"
- }
- ]
- },
- "20485": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Progress#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20493": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Progress#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20501": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Progress#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20509": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Progress#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20517": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Progress#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20525": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Progress#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Progress(): Progress",
- "url": "/api/class/Progress#constructor-new-progress",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "Progress"
- }
- ]
- },
- "20527": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Progress#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ProgressBar.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/progress/index.d.ts",
- "line": 11,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/ProgressBar.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/Progress#android"
- }
- ]
- },
- "20528": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Progress#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIProgressView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIProgressView_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/progress/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIProgressView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIProgressView_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/Progress#ios"
- }
- ]
- },
- "20529": {
- "name": "value",
- "type": "Property",
- "url": "/api/class/Progress#value",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a progress current value."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "value: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/progress/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a progress current value."
- }
- ]
- },
- "url": "/api/class/Progress#value"
- }
- ]
- },
- "20530": {
- "name": "maxValue",
- "type": "Property",
- "url": "/api/class/Progress#maxvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a progress max value."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxValue: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/progress/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a progress max value."
- }
- ]
- },
- "url": "/api/class/Progress#maxvalue"
- }
- ]
- },
- "20531": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Progress#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Progress#bindingcontext"
- }
- ]
- },
- "20532": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Progress#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#bordercolor"
- }
- ]
- },
- "20533": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Progress#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#bordertopcolor"
- }
- ]
- },
- "20534": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Progress#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderrightcolor"
- }
- ]
- },
- "20535": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Progress#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderbottomcolor"
- }
- ]
- },
- "20536": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Progress#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderleftcolor"
- }
- ]
- },
- "20537": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Progress#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderwidth"
- }
- ]
- },
- "20538": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Progress#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Progress#bordertopwidth"
- }
- ]
- },
- "20539": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Progress#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderrightwidth"
- }
- ]
- },
- "20540": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Progress#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderbottomwidth"
- }
- ]
- },
- "20541": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Progress#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderleftwidth"
- }
- ]
- },
- "20542": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Progress#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderradius"
- }
- ]
- },
- "20543": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Progress#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Progress#bordertopleftradius"
- }
- ]
- },
- "20544": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Progress#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Progress#bordertoprightradius"
- }
- ]
- },
- "20545": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Progress#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderbottomrightradius"
- }
- ]
- },
- "20546": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Progress#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Progress#borderbottomleftradius"
- }
- ]
- },
- "20547": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Progress#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#color"
- }
- ]
- },
- "20548": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Progress#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Progress#accessible"
- }
- ]
- },
- "20549": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityhidden"
- }
- ]
- },
- "20550": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityidentifier"
- }
- ]
- },
- "20551": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityrole"
- }
- ]
- },
- "20552": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Progress#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Progress#accessibilitystate"
- }
- ]
- },
- "20553": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Progress#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilitylabel"
- }
- ]
- },
- "20554": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityvalue"
- }
- ]
- },
- "20555": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Progress#accessibilityhint"
- }
- ]
- },
- "20556": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Progress#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#accessibilityliveregion"
- }
- ]
- },
- "20557": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Progress#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Progress#accessibilitylanguage"
- }
- ]
- },
- "20558": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Progress#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Progress#accessibilitymediasession"
- }
- ]
- },
- "20559": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Progress#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Progress#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "20560": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Progress#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Progress#iosaccessibilityminfontscale"
- }
- ]
- },
- "20561": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Progress#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Progress#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "20562": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Progress#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Progress#androidcontentdescriptionupdated"
- }
- ]
- },
- "20563": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Progress#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#automationtext"
- }
- ]
- },
- "20564": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Progress#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Progress#androidelevation"
- }
- ]
- },
- "20565": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Progress#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Progress#androiddynamicelevationoffset"
- }
- ]
- },
- "20566": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Progress#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Progress#background"
- }
- ]
- },
- "20567": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Progress#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Progress#backgroundcolor"
- }
- ]
- },
- "20568": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Progress#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Progress#backgroundimage"
- }
- ]
- },
- "20569": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Progress#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Progress#boxshadow"
- }
- ]
- },
- "20570": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Progress#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Progress#minwidth"
- }
- ]
- },
- "20571": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Progress#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Progress#minheight"
- }
- ]
- },
- "20572": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Progress#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Progress#width"
- }
- ]
- },
- "20573": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Progress#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Progress#height"
- }
- ]
- },
- "20574": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Progress#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Progress#margin"
- }
- ]
- },
- "20575": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Progress#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Progress#marginleft"
- }
- ]
- },
- "20576": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Progress#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Progress#margintop"
- }
- ]
- },
- "20577": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Progress#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Progress#marginright"
- }
- ]
- },
- "20578": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Progress#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Progress#marginbottom"
- }
- ]
- },
- "20579": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Progress#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Progress#horizontalalignment"
- }
- ]
- },
- "20580": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Progress#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Progress#verticalalignment"
- }
- ]
- },
- "20581": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Progress#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Progress#visibility"
- }
- ]
- },
- "20582": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Progress#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Progress#opacity"
- }
- ]
- },
- "20583": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Progress#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Progress#rotate"
- }
- ]
- },
- "20584": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Progress#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Progress#rotatex"
- }
- ]
- },
- "20585": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Progress#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Progress#rotatey"
- }
- ]
- },
- "20586": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Progress#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Progress#perspective"
- }
- ]
- },
- "20587": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Progress#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Progress#translatex"
- }
- ]
- },
- "20588": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Progress#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Progress#translatey"
- }
- ]
- },
- "20589": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Progress#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Progress#scalex"
- }
- ]
- },
- "20590": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Progress#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Progress#scaley"
- }
- ]
- },
- "20591": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Progress#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Progress#originx"
- }
- ]
- },
- "20592": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Progress#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Progress#originy"
- }
- ]
- },
- "20593": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Progress#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Progress#isenabled"
- }
- ]
- },
- "20594": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Progress#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Progress#isuserinteractionenabled"
- }
- ]
- },
- "20595": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Progress#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Progress#iosoverflowsafearea"
- }
- ]
- },
- "20596": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Progress#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Progress#iosoverflowsafeareaenabled"
- }
- ]
- },
- "20597": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Progress#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Progress#iosignoresafearea"
- }
- ]
- },
- "20598": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Progress#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Progress#islayoutvalid"
- }
- ]
- },
- "20599": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Progress#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Progress#csstype"
- }
- ]
- },
- "20600": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Progress#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#cssclasses"
- }
- ]
- },
- "20601": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Progress#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#csspseudoclasses"
- }
- ]
- },
- "20602": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Progress#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Progress#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20606": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Progress#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Progress#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20613": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Progress#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Progress#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "20615": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Progress#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Progress#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "20617": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Progress#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Progress#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "20619": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Progress#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Progress#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20623": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Progress#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Progress#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20629": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Progress#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Progress#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20633": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Progress#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Progress#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20639": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Progress#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Progress#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "20641": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Progress#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Progress#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "20644": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Progress#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Progress#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "20652": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Progress#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Progress#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Progress#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Progress#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Progress#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/Progress#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "20695": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Progress#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Progress#modal"
- }
- ]
- },
- "20696": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Progress#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Progress#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "20699": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Progress#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Progress#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "20702": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Progress#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Progress#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "20709": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Progress#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Progress#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "20711": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Progress#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Progress#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "20713": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Progress#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Progress#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "20716": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Progress#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Progress#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "20718": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Progress#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Progress#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "20730": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Progress#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Progress#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "20732": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Progress#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Progress#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "20734": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Progress#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Progress#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "20736": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Progress#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Progress#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20742": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Progress#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Progress#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20744": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Progress#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Progress#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "20746": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Progress#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Progress#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20748": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Progress#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Progress#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20754": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Progress#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Progress#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20757": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Progress#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Progress#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20760": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Progress#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Progress#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20829": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Progress#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Progress#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20835": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Progress#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Progress#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20840": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Progress#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Progress#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20842": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Progress#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Progress#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20844": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Progress#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Progress#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "20847": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Progress#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Progress#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "20850": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Progress#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Progress#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "20854": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Progress#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#testid"
- }
- ]
- },
- "20855": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Progress#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#touchanimation"
- }
- ]
- },
- "20856": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Progress#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#ignoretouchanimation"
- }
- ]
- },
- "20857": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Progress#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#touchdelay"
- }
- ]
- },
- "20858": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Progress#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#closemodalcallback"
- }
- ]
- },
- "20859": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Progress#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Progress#transitionid"
- }
- ]
- },
- "20860": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Progress#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#islayoutvalid"
- }
- ]
- },
- "20861": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Progress#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Progress#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20863": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Progress#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Progress#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20866": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Progress#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20874": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Progress#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20882": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Progress#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20890": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Progress#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Progress#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "20893": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Progress#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Progress#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20896": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Progress#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Progress#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20900": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Progress#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Progress#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20906": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Progress#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Progress#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20908": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Progress#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Progress#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20910": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Progress#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Progress#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20912": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Progress#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Progress#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20916": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Progress#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Progress#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "20920": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Progress#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Progress#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "20924": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Progress#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Progress#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "20928": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Progress#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Progress#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20930": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Progress#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Progress#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20936": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Progress#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Progress#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "20938": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Progress#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Progress#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "20942": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Progress#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#domnode"
- }
- ]
- },
- "20943": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Progress#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#recyclenativeview"
- }
- ]
- },
- "20944": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Progress#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Progress#viewcontroller"
- }
- ]
- },
- "20945": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Progress#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Progress#nativeviewprotected"
- }
- ]
- },
- "20946": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Progress#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Progress#parent"
- }
- ]
- },
- "20947": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Progress#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Progress#iscollapsed"
- }
- ]
- },
- "20948": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Progress#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Progress#id"
- }
- ]
- },
- "20949": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Progress#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Progress#classname"
- }
- ]
- },
- "20950": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Progress#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Progress#sharedtransitiontag"
- }
- ]
- },
- "20951": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Progress#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Progress#sharedtransitionignore"
- }
- ]
- },
- "20952": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Progress#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#domid"
- }
- ]
- },
- "20953": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Progress#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#context"
- }
- ]
- },
- "20954": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Progress#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#isaddedtonativevisualtree"
- }
- ]
- },
- "20955": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Progress#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#cssstate"
- }
- ]
- },
- "20956": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Progress#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#stylescope"
- }
- ]
- },
- "20961": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Progress#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Progress#suspendnativeupdatescount"
- }
- ]
- },
- "20962": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Progress#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#isstylescopehost"
- }
- ]
- },
- "20963": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Progress#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "20964": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Progress#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#left"
- }
- ]
- },
- "20965": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Progress#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#top"
- }
- ]
- },
- "20966": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Progress#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveleft"
- }
- ]
- },
- "20967": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Progress#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivetop"
- }
- ]
- },
- "20968": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Progress#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#dock"
- }
- ]
- },
- "20969": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Progress#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#row"
- }
- ]
- },
- "20970": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Progress#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#col"
- }
- ]
- },
- "20971": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Progress#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#column"
- }
- ]
- },
- "20972": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Progress#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#rowspan"
- }
- ]
- },
- "20973": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Progress#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#colspan"
- }
- ]
- },
- "20974": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Progress#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#columnspan"
- }
- ]
- },
- "20975": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Progress#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#order"
- }
- ]
- },
- "20976": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Progress#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#flexgrow"
- }
- ]
- },
- "20977": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Progress#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#flexshrink"
- }
- ]
- },
- "20978": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Progress#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#flexwrapbefore"
- }
- ]
- },
- "20979": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Progress#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#alignself"
- }
- ]
- },
- "20980": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Progress#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#oldleft"
- }
- ]
- },
- "20981": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Progress#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#oldtop"
- }
- ]
- },
- "20982": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Progress#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#oldright"
- }
- ]
- },
- "20983": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Progress#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#oldbottom"
- }
- ]
- },
- "20984": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Progress#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#ignoreflexminwidthheightreset"
- }
- ]
- },
- "20985": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Progress#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveminwidth"
- }
- ]
- },
- "20986": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Progress#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveminheight"
- }
- ]
- },
- "20987": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Progress#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivewidth"
- }
- ]
- },
- "20988": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Progress#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveheight"
- }
- ]
- },
- "20989": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Progress#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivemargintop"
- }
- ]
- },
- "20990": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Progress#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivemarginright"
- }
- ]
- },
- "20991": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Progress#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivemarginbottom"
- }
- ]
- },
- "20992": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Progress#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivemarginleft"
- }
- ]
- },
- "20993": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Progress#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivepaddingtop"
- }
- ]
- },
- "20994": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Progress#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivepaddingright"
- }
- ]
- },
- "20995": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Progress#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivepaddingbottom"
- }
- ]
- },
- "20996": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Progress#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivepaddingleft"
- }
- ]
- },
- "20997": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Progress#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectivebordertopwidth"
- }
- ]
- },
- "20998": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Progress#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveborderrightwidth"
- }
- ]
- },
- "20999": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Progress#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveborderbottomwidth"
- }
- ]
- },
- "21000": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Progress#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#effectiveborderleftwidth"
- }
- ]
- },
- "21001": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Progress#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#defaultpaddingtop"
- }
- ]
- },
- "21002": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Progress#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#defaultpaddingright"
- }
- ]
- },
- "21003": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Progress#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#defaultpaddingbottom"
- }
- ]
- },
- "21004": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Progress#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#defaultpaddingleft"
- }
- ]
- },
- "21005": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Progress#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Progress#ispaddingrelative"
- }
- ]
- },
- "21007": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Progress#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Progress#reusable"
- }
- ]
- },
- "21008": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Progress#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Progress#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "21012": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Progress#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Progress#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "21016": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Progress#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Progress#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21018": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Progress#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Progress#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "21022": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Progress#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Progress#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21024": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Progress#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Progress#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21028": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Progress#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Progress#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "21032": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Progress#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Progress#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "21036": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Progress#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Progress#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "21038": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Progress#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Progress#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21040": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Progress#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Progress#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21044": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Progress#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Progress#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21046": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Progress#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Progress#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21048": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Progress#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Progress#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21051": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Progress#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Progress#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21054": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Progress#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Progress#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "21060": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Progress#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Progress#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21062": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Progress#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Progress#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21064": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Progress#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Progress#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21067": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Progress#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Progress#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21070": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Progress#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Progress#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21074": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Progress#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Progress#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21077": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Progress#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Progress#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21081": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Progress#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Progress#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21085": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Progress#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Progress#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21088": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Progress#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Progress#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21090": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Progress#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Progress#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21093": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Progress#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Progress#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21096": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Progress#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Progress#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21099": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Progress#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Progress#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "21101": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Progress#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Progress#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21103": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Progress#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Progress#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21105": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Progress#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Progress#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21110": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Progress#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Progress#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21113": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Progress#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Progress#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21116": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Progress#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Progress#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21119": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Progress#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Progress#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "21122": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Progress#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Progress#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21126": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Progress#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Progress#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21129": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Progress#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Progress#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21133": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Progress#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Progress#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21136": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Progress#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Progress#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21139": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Progress#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Progress#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21141": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Progress#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Progress#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21145": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Progress#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Progress#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21148": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Progress#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Progress#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21150": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Progress#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Progress#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21153": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Progress#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Progress#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "21156": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Progress#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Progress#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21160": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Progress#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Progress#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21168": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Progress#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Progress#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21172": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Progress#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Progress#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21177": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Progress#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Progress#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21180": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Progress#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Progress#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "21185": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Progress#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Progress#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Progress.md b/content/api/class/Progress.md
deleted file mode 100644
index 819c57a8..00000000
--- a/content/api/class/Progress.md
+++ /dev/null
@@ -1,106 +0,0 @@
----
-title: Progress
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Progress'
-layout: api
-seo:
- description: "Represents a progress component."
----
-
-
-
-
-
-
-name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 45,
- "character": 13
- }
- ],
- "url": "/api/class/Property#name"
- }
- ]
- },
- "11873": {
- "name": "key",
- "type": "Property",
- "url": "/api/class/Property#key",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 46,
- "character": 13
- }
- ],
- "url": "/api/class/Property#key"
- }
- ]
- },
- "11874": {
- "name": "getDefault",
- "type": "Property",
- "url": "/api/class/Property#getdefault",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "getDefault: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 47,
- "character": 13
- }
- ],
- "url": "/api/class/Property#getdefault"
- }
- ]
- },
- "11875": {
- "name": "setNative",
- "type": "Property",
- "url": "/api/class/Property#setnative",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "setNative: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 48,
- "character": 13
- }
- ],
- "url": "/api/class/Property#setnative"
- }
- ]
- },
- "11876": {
- "name": "defaultValueKey",
- "type": "Property",
- "url": "/api/class/Property#defaultvaluekey",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "defaultValueKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 49,
- "character": 13
- }
- ],
- "url": "/api/class/Property#defaultvaluekey"
- }
- ]
- },
- "11877": {
- "name": "defaultValue",
- "type": "Property",
- "url": "/api/class/Property#defaultvalue",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "defaultValue: U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 50,
- "character": 13
- }
- ],
- "url": "/api/class/Property#defaultvalue"
- }
- ]
- },
- "11878": {
- "name": "nativeValueChange",
- "type": "Property",
- "url": "/api/class/Property#nativevaluechange",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "nativeValueChange: (owner: T, value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 51,
- "character": 13
- }
- ],
- "url": "/api/class/Property#nativevaluechange"
- }
- ]
- },
- "11883": {
- "name": "isStyleProperty",
- "type": "Property",
- "url": "/api/class/Property#isstyleproperty",
- "flags": {},
- "signatures": [
- {
- "code": "isStyleProperty: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "url": "/api/class/Property#isstyleproperty"
- }
- ]
- },
- "11884": {
- "name": "get",
- "type": "Property",
- "url": "/api/class/Property#get",
- "flags": {},
- "signatures": [
- {
- "code": "get: () => U",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "url": "/api/class/Property#get"
- }
- ]
- },
- "11887": {
- "name": "set",
- "type": "Property",
- "url": "/api/class/Property#set",
- "flags": {},
- "signatures": [
- {
- "code": "set: (value: U) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 54,
- "character": 4
- }
- ],
- "url": "/api/class/Property#set"
- }
- ]
- },
- "11891": {
- "name": "overrideHandlers",
- "type": "Property",
- "url": "/api/class/Property#overridehandlers",
- "flags": {},
- "signatures": [
- {
- "code": "overrideHandlers: (options: PropertyOptions<T, U>) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "url": "/api/class/Property#overridehandlers"
- }
- ]
- },
- "11895": {
- "name": "enumerable",
- "type": "Property",
- "url": "/api/class/Property#enumerable",
- "flags": {},
- "signatures": [
- {
- "code": "enumerable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "url": "/api/class/Property#enumerable"
- }
- ]
- },
- "11896": {
- "name": "configurable",
- "type": "Property",
- "url": "/api/class/Property#configurable",
- "flags": {},
- "signatures": [
- {
- "code": "configurable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 57,
- "character": 4
- }
- ],
- "url": "/api/class/Property#configurable"
- }
- ]
- },
- "11897": {
- "name": "register",
- "type": "Method",
- "url": "/api/class/Property#register",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "register(cls: {}): void",
- "url": "/api/class/Property#register-register-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cls",
- "type": "{}",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "11902": {
- "name": "isSet",
- "type": "Method",
- "url": "/api/class/Property#isset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "isSet(instance: T): boolean",
- "url": "/api/class/Property#isset-isset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 62,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "instance",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Property.md b/content/api/class/Property.md
deleted file mode 100644
index e8133415..00000000
--- a/content/api/class/Property.md
+++ /dev/null
@@ -1,260 +0,0 @@
----
-title: Property
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Property'
-layout: api
-seo:
- description: Property
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#layoutchangedevent"
- }
- ]
- },
- "21190": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#showingmodallyevent"
- }
- ]
- },
- "21191": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#shownmodallyevent"
- }
- ]
- },
- "21192": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityblurevent"
- }
- ]
- },
- "21193": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityfocusevent"
- }
- ]
- },
- "21194": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityfocuschangedevent"
- }
- ]
- },
- "21195": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ProxyViewContainer#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "21204": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ProxyViewContainer#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21212": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ProxyViewContainer#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "21218": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ProxyViewContainer#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "21222": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#accessibilityperformescapeevent"
- }
- ]
- },
- "21223": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#loadedevent"
- }
- ]
- },
- "21224": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#unloadedevent"
- }
- ]
- },
- "21225": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#createdevent"
- }
- ]
- },
- "21226": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#disposenativeviewevent"
- }
- ]
- },
- "21227": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#propertychangeevent"
- }
- ]
- },
- "21228": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21236": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21244": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21252": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21260": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21268": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ProxyViewContainer#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ProxyViewContainer(): ProxyViewContainer",
- "url": "/api/class/ProxyViewContainer#constructor-new-proxyviewcontainer",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 9,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "ProxyViewContainer"
- }
- ]
- },
- "21271": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#ios",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/ProxyViewContainer#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 10,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "21273": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#android",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/ProxyViewContainer#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 11,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "21275": {
- "name": "isLayoutRequested",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#islayoutrequested",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLayoutRequested(): boolean",
- "url": "/api/class/ProxyViewContainer#islayoutrequested-islayoutrequested-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 12,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21277": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#createnativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): any",
- "url": "/api/class/ProxyViewContainer#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 13,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "21279": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getnativeviewscount",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ProxyViewContainer#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 14,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "21281": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#eachlayoutview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ProxyViewContainer#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 15,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21287": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setupui",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ProxyViewContainer#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 16,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21292": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#teardownui",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ProxyViewContainer#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 17,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21295": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addviewtonativevisualtree",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(child: View, atIndex?: number): boolean",
- "url": "/api/class/ProxyViewContainer#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 18,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21299": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removeviewfromnativevisualtree",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(child: View): void",
- "url": "/api/class/ProxyViewContainer#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 19,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21302": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#registerlayoutchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/ProxyViewContainer#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 20,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21305": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#unregisterlayoutchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/ProxyViewContainer#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 21,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21308": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#parentchanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: View): void",
- "url": "/api/class/ProxyViewContainer#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 22,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "oldParent",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21311": {
- "name": "_changedLayoutProperty",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#changedlayoutproperty",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_changedLayoutProperty(propName: string, value: string): void",
- "url": "/api/class/ProxyViewContainer#changedlayoutproperty-changedlayoutproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/proxy-view-container/index.d.ts",
- "line": 26,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout property changed, proxy the new value to the child view(s)"
- }
- ]
- },
- "parameters": [
- {
- "name": "propName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21316": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/ProxyViewContainer#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "21318": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/ProxyViewContainer#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "21321": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/ProxyViewContainer#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "21324": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/ProxyViewContainer#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21327": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/ProxyViewContainer#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21331": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/ProxyViewContainer#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21334": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/ProxyViewContainer#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21336": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/ProxyViewContainer#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21343": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#padding"
- }
- ]
- },
- "21344": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#paddingbottom"
- }
- ]
- },
- "21345": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#paddingleft"
- }
- ]
- },
- "21346": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#paddingright"
- }
- ]
- },
- "21347": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#paddingtop"
- }
- ]
- },
- "21348": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#cliptobounds"
- }
- ]
- },
- "21349": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#ispassthroughparentenabled"
- }
- ]
- },
- "21361": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iosoverflowsafearea"
- }
- ]
- },
- "21362": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#bindingcontext"
- }
- ]
- },
- "21363": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#bordercolor"
- }
- ]
- },
- "21364": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#bordertopcolor"
- }
- ]
- },
- "21365": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderrightcolor"
- }
- ]
- },
- "21366": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderbottomcolor"
- }
- ]
- },
- "21367": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderleftcolor"
- }
- ]
- },
- "21368": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderwidth"
- }
- ]
- },
- "21369": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#bordertopwidth"
- }
- ]
- },
- "21370": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderrightwidth"
- }
- ]
- },
- "21371": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderbottomwidth"
- }
- ]
- },
- "21372": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderleftwidth"
- }
- ]
- },
- "21373": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderradius"
- }
- ]
- },
- "21374": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#bordertopleftradius"
- }
- ]
- },
- "21375": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#bordertoprightradius"
- }
- ]
- },
- "21376": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderbottomrightradius"
- }
- ]
- },
- "21377": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#borderbottomleftradius"
- }
- ]
- },
- "21378": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#color"
- }
- ]
- },
- "21379": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessible"
- }
- ]
- },
- "21380": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityhidden"
- }
- ]
- },
- "21381": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityidentifier"
- }
- ]
- },
- "21382": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityrole"
- }
- ]
- },
- "21383": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilitystate"
- }
- ]
- },
- "21384": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilitylabel"
- }
- ]
- },
- "21385": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityvalue"
- }
- ]
- },
- "21386": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilityhint"
- }
- ]
- },
- "21387": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#accessibilityliveregion"
- }
- ]
- },
- "21388": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilitylanguage"
- }
- ]
- },
- "21389": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#accessibilitymediasession"
- }
- ]
- },
- "21390": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "21391": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iosaccessibilityminfontscale"
- }
- ]
- },
- "21392": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "21393": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#androidcontentdescriptionupdated"
- }
- ]
- },
- "21394": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#automationtext"
- }
- ]
- },
- "21395": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#androidelevation"
- }
- ]
- },
- "21396": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#androiddynamicelevationoffset"
- }
- ]
- },
- "21397": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#background"
- }
- ]
- },
- "21398": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#backgroundcolor"
- }
- ]
- },
- "21399": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#backgroundimage"
- }
- ]
- },
- "21400": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#boxshadow"
- }
- ]
- },
- "21401": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#minwidth"
- }
- ]
- },
- "21402": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#minheight"
- }
- ]
- },
- "21403": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#width"
- }
- ]
- },
- "21404": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#height"
- }
- ]
- },
- "21405": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#margin"
- }
- ]
- },
- "21406": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#marginleft"
- }
- ]
- },
- "21407": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#margintop"
- }
- ]
- },
- "21408": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#marginright"
- }
- ]
- },
- "21409": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#marginbottom"
- }
- ]
- },
- "21410": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#horizontalalignment"
- }
- ]
- },
- "21411": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#verticalalignment"
- }
- ]
- },
- "21412": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#visibility"
- }
- ]
- },
- "21413": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#opacity"
- }
- ]
- },
- "21414": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#rotate"
- }
- ]
- },
- "21415": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#rotatex"
- }
- ]
- },
- "21416": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#rotatey"
- }
- ]
- },
- "21417": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#perspective"
- }
- ]
- },
- "21418": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#translatex"
- }
- ]
- },
- "21419": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#translatey"
- }
- ]
- },
- "21420": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#scalex"
- }
- ]
- },
- "21421": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#scaley"
- }
- ]
- },
- "21422": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#originx"
- }
- ]
- },
- "21423": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#originy"
- }
- ]
- },
- "21424": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#isenabled"
- }
- ]
- },
- "21425": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#isuserinteractionenabled"
- }
- ]
- },
- "21426": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iosoverflowsafeareaenabled"
- }
- ]
- },
- "21427": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iosignoresafearea"
- }
- ]
- },
- "21428": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#islayoutvalid"
- }
- ]
- },
- "21429": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#csstype"
- }
- ]
- },
- "21430": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#cssclasses"
- }
- ]
- },
- "21431": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#csspseudoclasses"
- }
- ]
- },
- "21432": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ProxyViewContainer#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21436": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ProxyViewContainer#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21443": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ProxyViewContainer#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "21445": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ProxyViewContainer#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "21447": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ProxyViewContainer#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "21449": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ProxyViewContainer#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21453": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ProxyViewContainer#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21459": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ProxyViewContainer#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21463": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ProxyViewContainer#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21469": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ProxyViewContainer#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21471": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ProxyViewContainer#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "21474": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ProxyViewContainer#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "21482": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ProxyViewContainer#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ProxyViewContainer#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ProxyViewContainer#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ProxyViewContainer#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/ProxyViewContainer#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "21525": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#modal"
- }
- ]
- },
- "21526": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ProxyViewContainer#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "21529": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ProxyViewContainer#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "21532": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ProxyViewContainer#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "21539": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ProxyViewContainer#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "21541": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ProxyViewContainer#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "21543": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ProxyViewContainer#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "21546": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ProxyViewContainer#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "21548": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ProxyViewContainer#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21560": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ProxyViewContainer#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21562": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ProxyViewContainer#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "21564": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ProxyViewContainer#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21566": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ProxyViewContainer#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21568": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ProxyViewContainer#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21570": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ProxyViewContainer#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21576": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ProxyViewContainer#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21579": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ProxyViewContainer#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21582": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ProxyViewContainer#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21651": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ProxyViewContainer#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21657": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ProxyViewContainer#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21662": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ProxyViewContainer#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21664": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ProxyViewContainer#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21666": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ProxyViewContainer#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21669": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ProxyViewContainer#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "21672": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ProxyViewContainer#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "21676": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#testid"
- }
- ]
- },
- "21677": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#touchanimation"
- }
- ]
- },
- "21678": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#ignoretouchanimation"
- }
- ]
- },
- "21679": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#touchdelay"
- }
- ]
- },
- "21680": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#closemodalcallback"
- }
- ]
- },
- "21681": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#transitionid"
- }
- ]
- },
- "21682": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#islayoutvalid"
- }
- ]
- },
- "21683": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ProxyViewContainer#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21685": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ProxyViewContainer#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21688": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21696": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21704": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21712": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ProxyViewContainer#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "21715": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ProxyViewContainer#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21718": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ProxyViewContainer#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21722": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ProxyViewContainer#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21728": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ProxyViewContainer#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21730": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ProxyViewContainer#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21732": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ProxyViewContainer#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21734": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ProxyViewContainer#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21738": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ProxyViewContainer#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21742": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ProxyViewContainer#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "21746": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ProxyViewContainer#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "21750": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ProxyViewContainer#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21752": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ProxyViewContainer#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21758": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ProxyViewContainer#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21760": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ProxyViewContainer#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21764": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#domnode"
- }
- ]
- },
- "21765": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#recyclenativeview"
- }
- ]
- },
- "21766": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#viewcontroller"
- }
- ]
- },
- "21767": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#nativeviewprotected"
- }
- ]
- },
- "21768": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#parent"
- }
- ]
- },
- "21769": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#iscollapsed"
- }
- ]
- },
- "21770": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#id"
- }
- ]
- },
- "21771": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#classname"
- }
- ]
- },
- "21772": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#sharedtransitiontag"
- }
- ]
- },
- "21773": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#sharedtransitionignore"
- }
- ]
- },
- "21774": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#domid"
- }
- ]
- },
- "21775": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#context"
- }
- ]
- },
- "21776": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#isaddedtonativevisualtree"
- }
- ]
- },
- "21777": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#cssstate"
- }
- ]
- },
- "21778": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#stylescope"
- }
- ]
- },
- "21783": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#suspendnativeupdatescount"
- }
- ]
- },
- "21784": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#isstylescopehost"
- }
- ]
- },
- "21785": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "21786": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#left"
- }
- ]
- },
- "21787": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#top"
- }
- ]
- },
- "21788": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveleft"
- }
- ]
- },
- "21789": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivetop"
- }
- ]
- },
- "21790": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#dock"
- }
- ]
- },
- "21791": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#row"
- }
- ]
- },
- "21792": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#col"
- }
- ]
- },
- "21793": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#column"
- }
- ]
- },
- "21794": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#rowspan"
- }
- ]
- },
- "21795": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#colspan"
- }
- ]
- },
- "21796": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#columnspan"
- }
- ]
- },
- "21797": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#order"
- }
- ]
- },
- "21798": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#flexgrow"
- }
- ]
- },
- "21799": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#flexshrink"
- }
- ]
- },
- "21800": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#flexwrapbefore"
- }
- ]
- },
- "21801": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#alignself"
- }
- ]
- },
- "21802": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#oldleft"
- }
- ]
- },
- "21803": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#oldtop"
- }
- ]
- },
- "21804": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#oldright"
- }
- ]
- },
- "21805": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#oldbottom"
- }
- ]
- },
- "21806": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#ignoreflexminwidthheightreset"
- }
- ]
- },
- "21807": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveminwidth"
- }
- ]
- },
- "21808": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveminheight"
- }
- ]
- },
- "21809": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivewidth"
- }
- ]
- },
- "21810": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveheight"
- }
- ]
- },
- "21811": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivemargintop"
- }
- ]
- },
- "21812": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivemarginright"
- }
- ]
- },
- "21813": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivemarginbottom"
- }
- ]
- },
- "21814": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivemarginleft"
- }
- ]
- },
- "21815": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivepaddingtop"
- }
- ]
- },
- "21816": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivepaddingright"
- }
- ]
- },
- "21817": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivepaddingbottom"
- }
- ]
- },
- "21818": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivepaddingleft"
- }
- ]
- },
- "21819": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectivebordertopwidth"
- }
- ]
- },
- "21820": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveborderrightwidth"
- }
- ]
- },
- "21821": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveborderbottomwidth"
- }
- ]
- },
- "21822": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#effectiveborderleftwidth"
- }
- ]
- },
- "21823": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#defaultpaddingtop"
- }
- ]
- },
- "21824": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#defaultpaddingright"
- }
- ]
- },
- "21825": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#defaultpaddingbottom"
- }
- ]
- },
- "21826": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#defaultpaddingleft"
- }
- ]
- },
- "21827": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/ProxyViewContainer#ispaddingrelative"
- }
- ]
- },
- "21829": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ProxyViewContainer#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ProxyViewContainer#reusable"
- }
- ]
- },
- "21830": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ProxyViewContainer#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "21834": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ProxyViewContainer#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "21838": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ProxyViewContainer#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21840": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ProxyViewContainer#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "21844": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ProxyViewContainer#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21846": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ProxyViewContainer#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21850": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ProxyViewContainer#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "21854": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ProxyViewContainer#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "21858": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ProxyViewContainer#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ProxyViewContainer#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "21860": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ProxyViewContainer#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21862": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ProxyViewContainer#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21866": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ProxyViewContainer#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21868": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ProxyViewContainer#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21870": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ProxyViewContainer#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21873": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ProxyViewContainer#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21876": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ProxyViewContainer#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "21882": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ProxyViewContainer#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21884": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ProxyViewContainer#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21886": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ProxyViewContainer#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21889": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ProxyViewContainer#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21892": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ProxyViewContainer#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21896": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ProxyViewContainer#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21899": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ProxyViewContainer#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21903": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ProxyViewContainer#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21907": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ProxyViewContainer#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21910": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ProxyViewContainer#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "21912": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ProxyViewContainer#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21915": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ProxyViewContainer#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21918": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ProxyViewContainer#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21921": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ProxyViewContainer#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21923": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ProxyViewContainer#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21925": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ProxyViewContainer#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21928": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ProxyViewContainer#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21931": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ProxyViewContainer#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "21934": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ProxyViewContainer#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21938": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ProxyViewContainer#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21941": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ProxyViewContainer#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21943": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ProxyViewContainer#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "21947": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ProxyViewContainer#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21950": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ProxyViewContainer#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21952": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ProxyViewContainer#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "21955": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ProxyViewContainer#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "21958": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ProxyViewContainer#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21962": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ProxyViewContainer#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21970": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ProxyViewContainer#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21974": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ProxyViewContainer#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "21979": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ProxyViewContainer#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "21982": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ProxyViewContainer#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "21987": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ProxyViewContainer#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ProxyViewContainer#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ProxyViewContainer.md b/content/api/class/ProxyViewContainer.md
deleted file mode 100644
index 73a99d09..00000000
--- a/content/api/class/ProxyViewContainer.md
+++ /dev/null
@@ -1,248 +0,0 @@
----
-title: ProxyViewContainer
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ProxyViewContainer'
-layout: api
-seo:
- description: "Proxy view container that adds all its native children directly to the parent.\nTo be used as a logical grouping container of views."
----
-
-
-
-
-
-
-knownFunctions: string[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 13,
- "character": 11
- }
- ],
- "url": "/api/class/Repeater#knownfunctions"
- }
- ]
- },
- "21992": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Repeater#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Repeater#layoutchangedevent"
- }
- ]
- },
- "21993": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Repeater#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Repeater#showingmodallyevent"
- }
- ]
- },
- "21994": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Repeater#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Repeater#shownmodallyevent"
- }
- ]
- },
- "21995": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityblurevent"
- }
- ]
- },
- "21996": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityfocusevent"
- }
- ]
- },
- "21997": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityfocuschangedevent"
- }
- ]
- },
- "21998": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Repeater#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Repeater#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "22007": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Repeater#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Repeater#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22015": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Repeater#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Repeater#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "22021": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Repeater#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Repeater#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "22025": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#accessibilityperformescapeevent"
- }
- ]
- },
- "22026": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Repeater#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Repeater#loadedevent"
- }
- ]
- },
- "22027": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Repeater#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Repeater#unloadedevent"
- }
- ]
- },
- "22028": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Repeater#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Repeater#createdevent"
- }
- ]
- },
- "22029": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Repeater#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Repeater#disposenativeviewevent"
- }
- ]
- },
- "22030": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Repeater#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Repeater#propertychangeevent"
- }
- ]
- },
- "22031": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Repeater#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22039": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Repeater#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22047": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Repeater#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22055": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Repeater#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22063": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Repeater#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22071": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Repeater#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Repeater(): Repeater",
- "url": "/api/class/Repeater#constructor-new-repeater",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 19,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Repeater"
- }
- ]
- },
- "22076": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Repeater#ios",
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 17,
- "character": 4
- }
- ],
- "url": "/api/class/Repeater#ios"
- }
- ]
- },
- "22077": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Repeater#android",
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 18,
- "character": 4
- }
- ],
- "url": "/api/class/Repeater#android"
- }
- ]
- },
- "22078": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Repeater#onloaded",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Repeater#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 20,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22080": {
- "name": "items",
- "type": "Property",
- "url": "/api/class/Repeater#items",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items collection of the Repeater.\nThe items property can be set to an array or an object defining length and getItem(index) method."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "items: any[] | ItemsSource",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 25,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items collection of the Repeater.\nThe items property can be set to an array or an object defining length and getItem(index) method."
- }
- ]
- },
- "url": "/api/class/Repeater#items"
- }
- ]
- },
- "22081": {
- "name": "itemTemplate",
- "type": "Property",
- "url": "/api/class/Repeater#itemtemplate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the item template of the Repeater."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemTemplate: string | Template",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the item template of the Repeater."
- }
- ]
- },
- "url": "/api/class/Repeater#itemtemplate"
- }
- ]
- },
- "22082": {
- "name": "itemTemplates",
- "type": "Property",
- "url": "/api/class/Repeater#itemtemplates",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the item templates of the Repeater."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemTemplates: string | KeyedTemplate[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 33,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the item templates of the Repeater."
- }
- ]
- },
- "url": "/api/class/Repeater#itemtemplates"
- }
- ]
- },
- "22083": {
- "name": "itemsLayout",
- "type": "Property",
- "url": "/api/class/Repeater#itemslayout",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items layout of the Repeater. Default value is StackLayout with orientation=\"vertical\"."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemsLayout: LayoutBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 37,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the items layout of the Repeater. Default value is StackLayout with orientation=\"vertical\"."
- }
- ]
- },
- "url": "/api/class/Repeater#itemslayout"
- }
- ]
- },
- "22084": {
- "name": "itemTemplateSelector",
- "type": "Accessor",
- "url": "/api/class/Repeater#itemtemplateselector",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get itemTemplateSelector(): string | (item: any, index: number, items: any) => string",
- "url": "/api/class/Repeater#itemtemplateselector-itemtemplateselector-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 38,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string | (item: any, index: number, items: any) => string"
- }
- ]
- },
- "22098": {
- "name": "_requestRefresh",
- "type": "Method",
- "url": "/api/class/Repeater#requestrefresh",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_requestRefresh(): void",
- "url": "/api/class/Repeater#requestrefresh-requestrefresh-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 40,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22100": {
- "name": "refresh",
- "type": "Method",
- "url": "/api/class/Repeater#refresh",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "refresh(): void",
- "url": "/api/class/Repeater#refresh-refresh-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Forces the Repeater to reload all its items."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22102": {
- "name": "_onItemsChanged",
- "type": "Method",
- "url": "/api/class/Repeater#onitemschanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onItemsChanged(data: ChangedData<any>): void",
- "url": "/api/class/Repeater#onitemschanged-onitemschanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 45,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "data",
- "type": "ChangedData<any>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22105": {
- "name": "_getDefaultItemContent",
- "type": "Method",
- "url": "/api/class/Repeater#getdefaultitemcontent",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getDefaultItemContent(index: number): View",
- "url": "/api/class/Repeater#getdefaultitemcontent-getdefaultitemcontent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 46,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "View"
- }
- ]
- },
- "22109": {
- "name": "_childrenCount",
- "type": "Accessor",
- "url": "/api/class/Repeater#childrencount",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get _childrenCount(): number",
- "url": "/api/class/Repeater#childrencount-childrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 48,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22111": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Repeater#eachchildview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (child: View) => boolean): void",
- "url": "/api/class/Repeater#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22117": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Repeater#onlayout",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Repeater#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 50,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22123": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Repeater#onmeasure",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Repeater#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/repeater/index.d.ts",
- "line": 51,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22138": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Repeater#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Repeater#iosoverflowsafearea"
- }
- ]
- },
- "22139": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Repeater#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Repeater#bindingcontext"
- }
- ]
- },
- "22140": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Repeater#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#bordercolor"
- }
- ]
- },
- "22141": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Repeater#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#bordertopcolor"
- }
- ]
- },
- "22142": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Repeater#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderrightcolor"
- }
- ]
- },
- "22143": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Repeater#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderbottomcolor"
- }
- ]
- },
- "22144": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Repeater#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderleftcolor"
- }
- ]
- },
- "22145": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Repeater#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderwidth"
- }
- ]
- },
- "22146": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Repeater#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#bordertopwidth"
- }
- ]
- },
- "22147": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Repeater#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderrightwidth"
- }
- ]
- },
- "22148": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Repeater#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderbottomwidth"
- }
- ]
- },
- "22149": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Repeater#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderleftwidth"
- }
- ]
- },
- "22150": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Repeater#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderradius"
- }
- ]
- },
- "22151": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Repeater#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#bordertopleftradius"
- }
- ]
- },
- "22152": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Repeater#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#bordertoprightradius"
- }
- ]
- },
- "22153": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Repeater#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderbottomrightradius"
- }
- ]
- },
- "22154": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Repeater#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#borderbottomleftradius"
- }
- ]
- },
- "22155": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Repeater#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#color"
- }
- ]
- },
- "22156": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Repeater#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Repeater#accessible"
- }
- ]
- },
- "22157": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityhidden"
- }
- ]
- },
- "22158": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityidentifier"
- }
- ]
- },
- "22159": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityrole"
- }
- ]
- },
- "22160": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilitystate"
- }
- ]
- },
- "22161": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilitylabel"
- }
- ]
- },
- "22162": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityvalue"
- }
- ]
- },
- "22163": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilityhint"
- }
- ]
- },
- "22164": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#accessibilityliveregion"
- }
- ]
- },
- "22165": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilitylanguage"
- }
- ]
- },
- "22166": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Repeater#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Repeater#accessibilitymediasession"
- }
- ]
- },
- "22167": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Repeater#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Repeater#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "22168": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Repeater#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Repeater#iosaccessibilityminfontscale"
- }
- ]
- },
- "22169": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Repeater#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Repeater#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "22170": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Repeater#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Repeater#androidcontentdescriptionupdated"
- }
- ]
- },
- "22171": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Repeater#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#automationtext"
- }
- ]
- },
- "22172": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Repeater#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Repeater#androidelevation"
- }
- ]
- },
- "22173": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Repeater#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Repeater#androiddynamicelevationoffset"
- }
- ]
- },
- "22174": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Repeater#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Repeater#background"
- }
- ]
- },
- "22175": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Repeater#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#backgroundcolor"
- }
- ]
- },
- "22176": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Repeater#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#backgroundimage"
- }
- ]
- },
- "22177": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Repeater#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#boxshadow"
- }
- ]
- },
- "22178": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Repeater#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Repeater#minwidth"
- }
- ]
- },
- "22179": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Repeater#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Repeater#minheight"
- }
- ]
- },
- "22180": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Repeater#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#width"
- }
- ]
- },
- "22181": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Repeater#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#height"
- }
- ]
- },
- "22182": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Repeater#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Repeater#margin"
- }
- ]
- },
- "22183": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Repeater#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Repeater#marginleft"
- }
- ]
- },
- "22184": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Repeater#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Repeater#margintop"
- }
- ]
- },
- "22185": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Repeater#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Repeater#marginright"
- }
- ]
- },
- "22186": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Repeater#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Repeater#marginbottom"
- }
- ]
- },
- "22187": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Repeater#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Repeater#horizontalalignment"
- }
- ]
- },
- "22188": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Repeater#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Repeater#verticalalignment"
- }
- ]
- },
- "22189": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Repeater#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#visibility"
- }
- ]
- },
- "22190": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Repeater#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Repeater#opacity"
- }
- ]
- },
- "22191": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Repeater#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Repeater#rotate"
- }
- ]
- },
- "22192": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Repeater#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Repeater#rotatex"
- }
- ]
- },
- "22193": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Repeater#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Repeater#rotatey"
- }
- ]
- },
- "22194": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Repeater#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Repeater#perspective"
- }
- ]
- },
- "22195": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Repeater#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Repeater#translatex"
- }
- ]
- },
- "22196": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Repeater#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Repeater#translatey"
- }
- ]
- },
- "22197": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Repeater#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#scalex"
- }
- ]
- },
- "22198": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Repeater#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#scaley"
- }
- ]
- },
- "22199": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Repeater#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#originx"
- }
- ]
- },
- "22200": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Repeater#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#originy"
- }
- ]
- },
- "22201": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Repeater#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#isenabled"
- }
- ]
- },
- "22202": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Repeater#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Repeater#isuserinteractionenabled"
- }
- ]
- },
- "22203": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Repeater#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Repeater#iosoverflowsafeareaenabled"
- }
- ]
- },
- "22204": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Repeater#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Repeater#iosignoresafearea"
- }
- ]
- },
- "22205": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Repeater#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Repeater#islayoutvalid"
- }
- ]
- },
- "22206": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Repeater#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Repeater#csstype"
- }
- ]
- },
- "22207": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Repeater#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#cssclasses"
- }
- ]
- },
- "22208": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Repeater#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#csspseudoclasses"
- }
- ]
- },
- "22209": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Repeater#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Repeater#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22213": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Repeater#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Repeater#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22220": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Repeater#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Repeater#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22222": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Repeater#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Repeater#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22224": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Repeater#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Repeater#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22226": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Repeater#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Repeater#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22230": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Repeater#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Repeater#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22236": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Repeater#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Repeater#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "22238": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Repeater#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Repeater#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "22241": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Repeater#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Repeater#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "22249": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Repeater#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Repeater#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Repeater#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Repeater#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Repeater#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/Repeater#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "22292": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Repeater#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Repeater#modal"
- }
- ]
- },
- "22293": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Repeater#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Repeater#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "22296": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Repeater#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Repeater#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "22299": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Repeater#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Repeater#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "22306": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Repeater#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Repeater#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "22308": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Repeater#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Repeater#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "22310": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Repeater#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Repeater#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "22313": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Repeater#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Repeater#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "22315": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Repeater#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Repeater#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "22327": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Repeater#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Repeater#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22329": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Repeater#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Repeater#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "22331": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Repeater#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Repeater#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "22333": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Repeater#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Repeater#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22339": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Repeater#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Repeater#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22341": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Repeater#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Repeater#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "22343": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Repeater#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Repeater#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22345": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Repeater#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Repeater#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22348": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Repeater#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Repeater#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22351": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Repeater#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Repeater#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22420": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Repeater#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Repeater#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "22426": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Repeater#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Repeater#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22431": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Repeater#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Repeater#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22433": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Repeater#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Repeater#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22435": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Repeater#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Repeater#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "22438": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Repeater#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Repeater#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "22441": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Repeater#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Repeater#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "22445": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Repeater#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#testid"
- }
- ]
- },
- "22446": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Repeater#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#touchanimation"
- }
- ]
- },
- "22447": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Repeater#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#ignoretouchanimation"
- }
- ]
- },
- "22448": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Repeater#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#touchdelay"
- }
- ]
- },
- "22449": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Repeater#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#closemodalcallback"
- }
- ]
- },
- "22450": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Repeater#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Repeater#transitionid"
- }
- ]
- },
- "22451": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Repeater#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#islayoutvalid"
- }
- ]
- },
- "22452": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Repeater#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Repeater#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22455": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Repeater#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22463": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Repeater#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22471": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Repeater#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22479": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Repeater#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Repeater#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "22482": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Repeater#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Repeater#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22485": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Repeater#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Repeater#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22489": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Repeater#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Repeater#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22495": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Repeater#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Repeater#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22497": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Repeater#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Repeater#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22499": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Repeater#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Repeater#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22501": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Repeater#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Repeater#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "22505": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Repeater#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Repeater#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "22509": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Repeater#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Repeater#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "22513": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Repeater#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Repeater#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "22517": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Repeater#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Repeater#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22519": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Repeater#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Repeater#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22525": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Repeater#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Repeater#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22527": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Repeater#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Repeater#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22531": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Repeater#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#domnode"
- }
- ]
- },
- "22532": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Repeater#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#recyclenativeview"
- }
- ]
- },
- "22533": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Repeater#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Repeater#viewcontroller"
- }
- ]
- },
- "22534": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Repeater#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Repeater#nativeviewprotected"
- }
- ]
- },
- "22535": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Repeater#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Repeater#parent"
- }
- ]
- },
- "22536": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Repeater#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Repeater#iscollapsed"
- }
- ]
- },
- "22537": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Repeater#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Repeater#id"
- }
- ]
- },
- "22538": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Repeater#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Repeater#classname"
- }
- ]
- },
- "22539": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Repeater#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Repeater#sharedtransitiontag"
- }
- ]
- },
- "22540": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Repeater#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Repeater#sharedtransitionignore"
- }
- ]
- },
- "22541": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Repeater#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#domid"
- }
- ]
- },
- "22542": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Repeater#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#context"
- }
- ]
- },
- "22543": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Repeater#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#isaddedtonativevisualtree"
- }
- ]
- },
- "22544": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Repeater#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#cssstate"
- }
- ]
- },
- "22545": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Repeater#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#stylescope"
- }
- ]
- },
- "22550": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Repeater#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Repeater#suspendnativeupdatescount"
- }
- ]
- },
- "22551": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Repeater#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#isstylescopehost"
- }
- ]
- },
- "22552": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Repeater#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "22553": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Repeater#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#left"
- }
- ]
- },
- "22554": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Repeater#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#top"
- }
- ]
- },
- "22555": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveleft"
- }
- ]
- },
- "22556": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Repeater#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivetop"
- }
- ]
- },
- "22557": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Repeater#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#dock"
- }
- ]
- },
- "22558": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Repeater#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#row"
- }
- ]
- },
- "22559": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Repeater#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#col"
- }
- ]
- },
- "22560": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Repeater#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#column"
- }
- ]
- },
- "22561": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Repeater#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#rowspan"
- }
- ]
- },
- "22562": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Repeater#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#colspan"
- }
- ]
- },
- "22563": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Repeater#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#columnspan"
- }
- ]
- },
- "22564": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Repeater#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#order"
- }
- ]
- },
- "22565": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Repeater#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#flexgrow"
- }
- ]
- },
- "22566": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Repeater#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#flexshrink"
- }
- ]
- },
- "22567": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Repeater#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#flexwrapbefore"
- }
- ]
- },
- "22568": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Repeater#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#alignself"
- }
- ]
- },
- "22569": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Repeater#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#oldleft"
- }
- ]
- },
- "22570": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Repeater#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#oldtop"
- }
- ]
- },
- "22571": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Repeater#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#oldright"
- }
- ]
- },
- "22572": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Repeater#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#oldbottom"
- }
- ]
- },
- "22573": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Repeater#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#ignoreflexminwidthheightreset"
- }
- ]
- },
- "22574": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveminwidth"
- }
- ]
- },
- "22575": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveminheight"
- }
- ]
- },
- "22576": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Repeater#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivewidth"
- }
- ]
- },
- "22577": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveheight"
- }
- ]
- },
- "22578": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Repeater#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivemargintop"
- }
- ]
- },
- "22579": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Repeater#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivemarginright"
- }
- ]
- },
- "22580": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Repeater#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivemarginbottom"
- }
- ]
- },
- "22581": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Repeater#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivemarginleft"
- }
- ]
- },
- "22582": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Repeater#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivepaddingtop"
- }
- ]
- },
- "22583": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Repeater#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivepaddingright"
- }
- ]
- },
- "22584": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Repeater#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivepaddingbottom"
- }
- ]
- },
- "22585": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Repeater#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivepaddingleft"
- }
- ]
- },
- "22586": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Repeater#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectivebordertopwidth"
- }
- ]
- },
- "22587": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveborderrightwidth"
- }
- ]
- },
- "22588": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveborderbottomwidth"
- }
- ]
- },
- "22589": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Repeater#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#effectiveborderleftwidth"
- }
- ]
- },
- "22590": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Repeater#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#defaultpaddingtop"
- }
- ]
- },
- "22591": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Repeater#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#defaultpaddingright"
- }
- ]
- },
- "22592": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Repeater#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#defaultpaddingbottom"
- }
- ]
- },
- "22593": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Repeater#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#defaultpaddingleft"
- }
- ]
- },
- "22594": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Repeater#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "url": "/api/class/Repeater#ispaddingrelative"
- }
- ]
- },
- "22596": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Repeater#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Repeater#reusable"
- }
- ]
- },
- "22597": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Repeater#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Repeater#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "22601": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Repeater#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Repeater#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "22605": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Repeater#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Repeater#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "22607": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Repeater#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Repeater#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "22611": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Repeater#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Repeater#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "22613": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Repeater#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Repeater#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "22617": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Repeater#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Repeater#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "22621": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Repeater#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Repeater#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "22625": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Repeater#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Repeater#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "22627": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Repeater#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Repeater#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22629": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Repeater#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Repeater#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22633": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Repeater#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Repeater#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22635": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Repeater#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Repeater#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22637": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Repeater#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Repeater#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22640": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Repeater#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Repeater#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22643": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Repeater#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Repeater#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "22649": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Repeater#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Repeater#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22651": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Repeater#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Repeater#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22653": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Repeater#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Repeater#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22656": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Repeater#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Repeater#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22659": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Repeater#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Repeater#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22663": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Repeater#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Repeater#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22666": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Repeater#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Repeater#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22670": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Repeater#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Repeater#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22674": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Repeater#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Repeater#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22677": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Repeater#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Repeater#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "22679": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Repeater#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Repeater#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22682": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Repeater#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Repeater#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22685": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Repeater#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Repeater#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22688": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Repeater#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Repeater#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "22690": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Repeater#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Repeater#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22692": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Repeater#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Repeater#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22694": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Repeater#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Repeater#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22699": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Repeater#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Repeater#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22702": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Repeater#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Repeater#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22705": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Repeater#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Repeater#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22708": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Repeater#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Repeater#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "22711": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Repeater#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Repeater#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "22715": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Repeater#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Repeater#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22718": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Repeater#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Repeater#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "22722": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Repeater#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Repeater#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22725": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Repeater#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Repeater#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22728": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Repeater#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Repeater#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22730": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Repeater#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Repeater#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "22734": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Repeater#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Repeater#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22737": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Repeater#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Repeater#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22739": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Repeater#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Repeater#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22742": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Repeater#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Repeater#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "22745": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Repeater#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Repeater#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22749": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Repeater#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Repeater#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22757": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Repeater#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Repeater#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22761": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Repeater#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Repeater#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22766": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Repeater#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Repeater#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "22769": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Repeater#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Repeater#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "22774": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Repeater#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Repeater#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "CustomLayoutView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Repeater.md b/content/api/class/Repeater.md
deleted file mode 100644
index e2e83527..00000000
--- a/content/api/class/Repeater.md
+++ /dev/null
@@ -1,292 +0,0 @@
----
-title: Repeater
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Repeater'
-layout: api
-seo:
- description: "Represents a UI Repeater component."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/RootLayout#layoutchangedevent"
- }
- ]
- },
- "37667": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/RootLayout#showingmodallyevent"
- }
- ]
- },
- "37668": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/RootLayout#shownmodallyevent"
- }
- ]
- },
- "37669": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityblurevent"
- }
- ]
- },
- "37670": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityfocusevent"
- }
- ]
- },
- "37671": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "37672": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/RootLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/RootLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "37681": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/RootLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/RootLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37689": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/RootLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/RootLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "37695": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/RootLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/RootLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "37699": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "37700": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/RootLayout#loadedevent"
- }
- ]
- },
- "37701": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/RootLayout#unloadedevent"
- }
- ]
- },
- "37702": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/RootLayout#createdevent"
- }
- ]
- },
- "37703": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/RootLayout#disposenativeviewevent"
- }
- ]
- },
- "37704": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/RootLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/RootLayout#propertychangeevent"
- }
- ]
- },
- "37705": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/RootLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37713": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/RootLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37721": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/RootLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37729": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/RootLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37737": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/RootLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37745": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/RootLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new RootLayout(): RootLayout",
- "url": "/api/class/RootLayout#constructor-new-rootlayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "RootLayout"
- }
- ]
- },
- "37747": {
- "name": "open",
- "type": "Method",
- "url": "/api/class/RootLayout#open",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "open(view: View, options?: RootLayoutOptions): Promise<void>",
- "url": "/api/class/RootLayout#open-open-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {}
- },
- {
- "name": "options",
- "type": "RootLayoutOptions",
- "flags": {},
- "defaultValue": "{}"
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "37751": {
- "name": "close",
- "type": "Method",
- "url": "/api/class/RootLayout#close",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "close(view: View, exitTo?: TransitionAnimation): Promise<void>",
- "url": "/api/class/RootLayout#close-close-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 6,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {}
- },
- {
- "name": "exitTo",
- "type": "TransitionAnimation",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "37755": {
- "name": "topmost",
- "type": "Method",
- "url": "/api/class/RootLayout#topmost",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "topmost(): View",
- "url": "/api/class/RootLayout#topmost-topmost-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 7,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "37757": {
- "name": "bringToFront",
- "type": "Method",
- "url": "/api/class/RootLayout#bringtofront",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bringToFront(view: View, animated?: boolean): Promise<void>",
- "url": "/api/class/RootLayout#bringtofront-bringtofront-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 8,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {}
- },
- {
- "name": "animated",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "37761": {
- "name": "closeAll",
- "type": "Method",
- "url": "/api/class/RootLayout#closeall",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeAll(): Promise<void[]>",
- "url": "/api/class/RootLayout#closeall-closeall-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 9,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "Promise<void[]>"
- }
- ]
- },
- "37763": {
- "name": "getShadeCover",
- "type": "Method",
- "url": "/api/class/RootLayout#getshadecover",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getShadeCover(): View",
- "url": "/api/class/RootLayout#getshadecover-getshadecover-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 10,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "37765": {
- "name": "openShadeCover",
- "type": "Method",
- "url": "/api/class/RootLayout#openshadecover",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "openShadeCover(options?: ShadeCoverOptions): Promise<void>",
- "url": "/api/class/RootLayout#openshadecover-openshadecover-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 11,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "options",
- "type": "ShadeCoverOptions",
- "flags": {},
- "defaultValue": "{}"
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "37768": {
- "name": "closeShadeCover",
- "type": "Method",
- "url": "/api/class/RootLayout#closeshadecover",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeShadeCover(shadeCoverOptions?: ShadeCoverOptions): Promise<void>",
- "url": "/api/class/RootLayout#closeshadecover-closeshadecover-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/root-layout/index.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "shadeCoverOptions",
- "type": "ShadeCoverOptions",
- "flags": {},
- "defaultValue": "{}"
- }
- ],
- "returns": "Promise<void>"
- }
- ]
- },
- "37771": {
- "name": "addColumn",
- "type": "Method",
- "url": "/api/class/RootLayout#addcolumn",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addColumn(itemSpec: ItemSpec): void",
- "url": "/api/class/RootLayout#addcolumn-addcolumn-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 93,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a column specification to a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37774": {
- "name": "addRow",
- "type": "Method",
- "url": "/api/class/RootLayout#addrow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addRow(itemSpec: ItemSpec): void",
- "url": "/api/class/RootLayout#addrow-addrow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 98,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a row specification to a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37777": {
- "name": "addChildAtCell",
- "type": "Method",
- "url": "/api/class/RootLayout#addchildatcell",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChildAtCell(view: View, row: number, column: number, rowSpan?: number, columnSpan?: number): void",
- "url": "/api/class/RootLayout#addchildatcell-addchildatcell-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 103,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a child at specific cell in GridLayout. Optional rowSpan and columnSpan attributes"
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {}
- },
- {
- "name": "row",
- "type": "number",
- "flags": {}
- },
- {
- "name": "column",
- "type": "number",
- "flags": {}
- },
- {
- "name": "rowSpan",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "columnSpan",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37784": {
- "name": "removeColumn",
- "type": "Method",
- "url": "/api/class/RootLayout#removecolumn",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeColumn(itemSpec: ItemSpec): void",
- "url": "/api/class/RootLayout#removecolumn-removecolumn-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 108,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes a column specification from a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37787": {
- "name": "removeColumns",
- "type": "Method",
- "url": "/api/class/RootLayout#removecolumns",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeColumns(): void",
- "url": "/api/class/RootLayout#removecolumns-removecolumns-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 113,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all column specifications from a GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37789": {
- "name": "removeRow",
- "type": "Method",
- "url": "/api/class/RootLayout#removerow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeRow(itemSpec: ItemSpec): void",
- "url": "/api/class/RootLayout#removerow-removerow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 118,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes a row specification from a GridLayout."
- }
- ]
- },
- "parameters": [
- {
- "name": "itemSpec",
- "type": "ItemSpec",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37792": {
- "name": "removeRows",
- "type": "Method",
- "url": "/api/class/RootLayout#removerows",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeRows(): void",
- "url": "/api/class/RootLayout#removerows-removerows-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 123,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all row specifications from a GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37794": {
- "name": "getColumns",
- "type": "Method",
- "url": "/api/class/RootLayout#getcolumns",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getColumns(): ItemSpec[]",
- "url": "/api/class/RootLayout#getcolumns-getcolumns-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 128,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets array of column specifications defined on this instance of GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "ItemSpec[]"
- }
- ]
- },
- "37796": {
- "name": "getRows",
- "type": "Method",
- "url": "/api/class/RootLayout#getrows",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getRows(): ItemSpec[]",
- "url": "/api/class/RootLayout#getrows-getrows-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/grid-layout/index.d.ts",
- "line": 133,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets array of row specifications defined on this instance of GridLayout."
- }
- ]
- },
- "parameters": [],
- "returns": "ItemSpec[]"
- }
- ]
- },
- "37812": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/RootLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/RootLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37814": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/RootLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/RootLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "37817": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/RootLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/RootLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "37820": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/RootLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/RootLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37823": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/RootLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/RootLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37827": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/RootLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/RootLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37830": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/RootLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/RootLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "37832": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/RootLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/RootLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37835": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/RootLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/RootLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37838": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/RootLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/RootLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37845": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/RootLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/RootLayout#padding"
- }
- ]
- },
- "37846": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/RootLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/RootLayout#paddingbottom"
- }
- ]
- },
- "37847": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/RootLayout#paddingleft"
- }
- ]
- },
- "37848": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/RootLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/RootLayout#paddingright"
- }
- ]
- },
- "37849": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/RootLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/RootLayout#paddingtop"
- }
- ]
- },
- "37850": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/RootLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/RootLayout#cliptobounds"
- }
- ]
- },
- "37851": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/RootLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#ispassthroughparentenabled"
- }
- ]
- },
- "37863": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/RootLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/RootLayout#iosoverflowsafearea"
- }
- ]
- },
- "37864": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/RootLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/RootLayout#android"
- }
- ]
- },
- "37865": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/RootLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/RootLayout#ios"
- }
- ]
- },
- "37866": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/RootLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/RootLayout#bindingcontext"
- }
- ]
- },
- "37867": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/RootLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#bordercolor"
- }
- ]
- },
- "37868": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/RootLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#bordertopcolor"
- }
- ]
- },
- "37869": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/RootLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderrightcolor"
- }
- ]
- },
- "37870": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/RootLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderbottomcolor"
- }
- ]
- },
- "37871": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/RootLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderleftcolor"
- }
- ]
- },
- "37872": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderwidth"
- }
- ]
- },
- "37873": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#bordertopwidth"
- }
- ]
- },
- "37874": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderrightwidth"
- }
- ]
- },
- "37875": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderbottomwidth"
- }
- ]
- },
- "37876": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderleftwidth"
- }
- ]
- },
- "37877": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/RootLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderradius"
- }
- ]
- },
- "37878": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/RootLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#bordertopleftradius"
- }
- ]
- },
- "37879": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/RootLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#bordertoprightradius"
- }
- ]
- },
- "37880": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/RootLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderbottomrightradius"
- }
- ]
- },
- "37881": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/RootLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#borderbottomleftradius"
- }
- ]
- },
- "37882": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/RootLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#color"
- }
- ]
- },
- "37883": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/RootLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessible"
- }
- ]
- },
- "37884": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityhidden"
- }
- ]
- },
- "37885": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityidentifier"
- }
- ]
- },
- "37886": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityrole"
- }
- ]
- },
- "37887": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilitystate"
- }
- ]
- },
- "37888": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilitylabel"
- }
- ]
- },
- "37889": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityvalue"
- }
- ]
- },
- "37890": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilityhint"
- }
- ]
- },
- "37891": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#accessibilityliveregion"
- }
- ]
- },
- "37892": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilitylanguage"
- }
- ]
- },
- "37893": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/RootLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/RootLayout#accessibilitymediasession"
- }
- ]
- },
- "37894": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/RootLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/RootLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "37895": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/RootLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/RootLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "37896": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/RootLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/RootLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "37897": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/RootLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/RootLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "37898": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/RootLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#automationtext"
- }
- ]
- },
- "37899": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/RootLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/RootLayout#androidelevation"
- }
- ]
- },
- "37900": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/RootLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/RootLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "37901": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/RootLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/RootLayout#background"
- }
- ]
- },
- "37902": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/RootLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#backgroundcolor"
- }
- ]
- },
- "37903": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/RootLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#backgroundimage"
- }
- ]
- },
- "37904": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/RootLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#boxshadow"
- }
- ]
- },
- "37905": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/RootLayout#minwidth"
- }
- ]
- },
- "37906": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/RootLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/RootLayout#minheight"
- }
- ]
- },
- "37907": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/RootLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#width"
- }
- ]
- },
- "37908": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/RootLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#height"
- }
- ]
- },
- "37909": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/RootLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/RootLayout#margin"
- }
- ]
- },
- "37910": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/RootLayout#marginleft"
- }
- ]
- },
- "37911": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/RootLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/RootLayout#margintop"
- }
- ]
- },
- "37912": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/RootLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/RootLayout#marginright"
- }
- ]
- },
- "37913": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/RootLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/RootLayout#marginbottom"
- }
- ]
- },
- "37914": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/RootLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/RootLayout#horizontalalignment"
- }
- ]
- },
- "37915": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/RootLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/RootLayout#verticalalignment"
- }
- ]
- },
- "37916": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/RootLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#visibility"
- }
- ]
- },
- "37917": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/RootLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/RootLayout#opacity"
- }
- ]
- },
- "37918": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/RootLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/RootLayout#rotate"
- }
- ]
- },
- "37919": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/RootLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/RootLayout#rotatex"
- }
- ]
- },
- "37920": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/RootLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/RootLayout#rotatey"
- }
- ]
- },
- "37921": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/RootLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/RootLayout#perspective"
- }
- ]
- },
- "37922": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/RootLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/RootLayout#translatex"
- }
- ]
- },
- "37923": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/RootLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/RootLayout#translatey"
- }
- ]
- },
- "37924": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/RootLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#scalex"
- }
- ]
- },
- "37925": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/RootLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#scaley"
- }
- ]
- },
- "37926": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/RootLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#originx"
- }
- ]
- },
- "37927": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/RootLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#originy"
- }
- ]
- },
- "37928": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/RootLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#isenabled"
- }
- ]
- },
- "37929": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/RootLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/RootLayout#isuserinteractionenabled"
- }
- ]
- },
- "37930": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/RootLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/RootLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "37931": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/RootLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/RootLayout#iosignoresafearea"
- }
- ]
- },
- "37932": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/RootLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/RootLayout#islayoutvalid"
- }
- ]
- },
- "37933": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/RootLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/RootLayout#csstype"
- }
- ]
- },
- "37934": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/RootLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#cssclasses"
- }
- ]
- },
- "37935": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/RootLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#csspseudoclasses"
- }
- ]
- },
- "37936": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/RootLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/RootLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37940": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/RootLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/RootLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37947": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/RootLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/RootLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37949": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/RootLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/RootLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37951": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/RootLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/RootLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "37953": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/RootLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/RootLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37957": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/RootLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/RootLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37963": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/RootLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/RootLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37967": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/RootLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/RootLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "37973": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/RootLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/RootLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "37975": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/RootLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/RootLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "37978": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/RootLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/RootLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "37986": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/RootLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/RootLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/RootLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/RootLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/RootLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/RootLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "38029": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/RootLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/RootLayout#modal"
- }
- ]
- },
- "38030": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/RootLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/RootLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "38033": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/RootLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/RootLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "38036": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/RootLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/RootLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "38043": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/RootLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/RootLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "38045": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/RootLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/RootLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "38047": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/RootLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/RootLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "38050": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/RootLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/RootLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "38052": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/RootLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/RootLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38064": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/RootLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/RootLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "38066": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/RootLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/RootLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38068": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/RootLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/RootLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "38070": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/RootLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/RootLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38076": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/RootLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/RootLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38078": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/RootLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/RootLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38080": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/RootLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/RootLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38082": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/RootLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/RootLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38088": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/RootLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/RootLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38091": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/RootLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/RootLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38094": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/RootLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/RootLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38163": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/RootLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/RootLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38169": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/RootLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/RootLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38174": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/RootLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/RootLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38176": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/RootLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/RootLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38178": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/RootLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/RootLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38181": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/RootLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/RootLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "38184": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/RootLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/RootLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "38188": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/RootLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#testid"
- }
- ]
- },
- "38189": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/RootLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#touchanimation"
- }
- ]
- },
- "38190": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/RootLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#ignoretouchanimation"
- }
- ]
- },
- "38191": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/RootLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#touchdelay"
- }
- ]
- },
- "38192": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/RootLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#closemodalcallback"
- }
- ]
- },
- "38193": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/RootLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/RootLayout#transitionid"
- }
- ]
- },
- "38194": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/RootLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#islayoutvalid"
- }
- ]
- },
- "38195": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/RootLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/RootLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38197": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/RootLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/RootLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38200": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/RootLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38208": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/RootLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38216": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/RootLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38224": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/RootLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/RootLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "38227": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/RootLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/RootLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38230": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/RootLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/RootLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38234": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/RootLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/RootLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38240": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/RootLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/RootLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38242": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/RootLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/RootLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38244": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/RootLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/RootLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38246": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/RootLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/RootLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "38250": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/RootLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/RootLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "38254": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/RootLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/RootLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "38258": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/RootLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/RootLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "38262": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/RootLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/RootLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38264": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/RootLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/RootLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38270": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/RootLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/RootLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38272": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/RootLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/RootLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38276": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/RootLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#domnode"
- }
- ]
- },
- "38277": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/RootLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#recyclenativeview"
- }
- ]
- },
- "38278": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/RootLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/RootLayout#viewcontroller"
- }
- ]
- },
- "38279": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/RootLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/RootLayout#nativeviewprotected"
- }
- ]
- },
- "38280": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/RootLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/RootLayout#parent"
- }
- ]
- },
- "38281": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/RootLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/RootLayout#iscollapsed"
- }
- ]
- },
- "38282": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/RootLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/RootLayout#id"
- }
- ]
- },
- "38283": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/RootLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/RootLayout#classname"
- }
- ]
- },
- "38284": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/RootLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/RootLayout#sharedtransitiontag"
- }
- ]
- },
- "38285": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/RootLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/RootLayout#sharedtransitionignore"
- }
- ]
- },
- "38286": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/RootLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#domid"
- }
- ]
- },
- "38287": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/RootLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#context"
- }
- ]
- },
- "38288": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/RootLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "38289": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/RootLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#cssstate"
- }
- ]
- },
- "38290": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/RootLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#stylescope"
- }
- ]
- },
- "38295": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/RootLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/RootLayout#suspendnativeupdatescount"
- }
- ]
- },
- "38296": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/RootLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#isstylescopehost"
- }
- ]
- },
- "38297": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/RootLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "38298": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/RootLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#left"
- }
- ]
- },
- "38299": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/RootLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#top"
- }
- ]
- },
- "38300": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveleft"
- }
- ]
- },
- "38301": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivetop"
- }
- ]
- },
- "38302": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/RootLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#dock"
- }
- ]
- },
- "38303": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/RootLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#row"
- }
- ]
- },
- "38304": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/RootLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#col"
- }
- ]
- },
- "38305": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/RootLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#column"
- }
- ]
- },
- "38306": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/RootLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#rowspan"
- }
- ]
- },
- "38307": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/RootLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#colspan"
- }
- ]
- },
- "38308": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/RootLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#columnspan"
- }
- ]
- },
- "38309": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/RootLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#order"
- }
- ]
- },
- "38310": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/RootLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#flexgrow"
- }
- ]
- },
- "38311": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/RootLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#flexshrink"
- }
- ]
- },
- "38312": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/RootLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#flexwrapbefore"
- }
- ]
- },
- "38313": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/RootLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#alignself"
- }
- ]
- },
- "38314": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#oldleft"
- }
- ]
- },
- "38315": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/RootLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#oldtop"
- }
- ]
- },
- "38316": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/RootLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#oldright"
- }
- ]
- },
- "38317": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/RootLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#oldbottom"
- }
- ]
- },
- "38318": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/RootLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "38319": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveminwidth"
- }
- ]
- },
- "38320": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveminheight"
- }
- ]
- },
- "38321": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivewidth"
- }
- ]
- },
- "38322": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveheight"
- }
- ]
- },
- "38323": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivemargintop"
- }
- ]
- },
- "38324": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivemarginright"
- }
- ]
- },
- "38325": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivemarginbottom"
- }
- ]
- },
- "38326": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivemarginleft"
- }
- ]
- },
- "38327": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivepaddingtop"
- }
- ]
- },
- "38328": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivepaddingright"
- }
- ]
- },
- "38329": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivepaddingbottom"
- }
- ]
- },
- "38330": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivepaddingleft"
- }
- ]
- },
- "38331": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectivebordertopwidth"
- }
- ]
- },
- "38332": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveborderrightwidth"
- }
- ]
- },
- "38333": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "38334": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/RootLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#effectiveborderleftwidth"
- }
- ]
- },
- "38335": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/RootLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#defaultpaddingtop"
- }
- ]
- },
- "38336": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/RootLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#defaultpaddingright"
- }
- ]
- },
- "38337": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/RootLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#defaultpaddingbottom"
- }
- ]
- },
- "38338": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/RootLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#defaultpaddingleft"
- }
- ]
- },
- "38339": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/RootLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "url": "/api/class/RootLayout#ispaddingrelative"
- }
- ]
- },
- "38341": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/RootLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/RootLayout#reusable"
- }
- ]
- },
- "38342": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/RootLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/RootLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "38346": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/RootLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/RootLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "38350": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/RootLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/RootLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "38352": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/RootLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/RootLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "38356": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/RootLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/RootLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38358": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/RootLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/RootLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "38362": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/RootLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/RootLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "38366": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/RootLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/RootLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "38370": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/RootLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/RootLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "38372": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/RootLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/RootLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38374": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/RootLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/RootLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38378": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/RootLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/RootLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38380": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/RootLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/RootLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38382": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/RootLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/RootLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38385": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/RootLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/RootLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38388": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/RootLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/RootLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "38394": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/RootLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/RootLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38396": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/RootLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/RootLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38398": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/RootLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/RootLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38401": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/RootLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/RootLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38404": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/RootLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/RootLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38408": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/RootLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/RootLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38411": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/RootLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/RootLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38415": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/RootLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/RootLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38419": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/RootLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/RootLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38422": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/RootLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/RootLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38424": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/RootLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/RootLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38427": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/RootLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/RootLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38430": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/RootLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/RootLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38433": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/RootLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/RootLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "38435": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/RootLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/RootLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38437": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/RootLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/RootLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38439": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/RootLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/RootLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38444": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/RootLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/RootLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38447": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/RootLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/RootLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38450": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/RootLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/RootLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38453": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/RootLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/RootLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "38456": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/RootLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/RootLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38460": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/RootLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/RootLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38463": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/RootLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/RootLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38467": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/RootLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/RootLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38470": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/RootLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/RootLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38473": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/RootLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/RootLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38475": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/RootLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/RootLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "38479": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/RootLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/RootLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38482": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/RootLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/RootLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38484": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/RootLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/RootLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38487": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/RootLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/RootLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "38490": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/RootLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/RootLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38494": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/RootLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/RootLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38502": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/RootLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/RootLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38506": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/RootLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/RootLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38511": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/RootLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/RootLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38514": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/RootLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/RootLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "38519": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/RootLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/RootLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "GridLayout"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/RootLayout.md b/content/api/class/RootLayout.md
deleted file mode 100644
index 8bd69ca5..00000000
--- a/content/api/class/RootLayout.md
+++ /dev/null
@@ -1,160 +0,0 @@
----
-title: RootLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'RootLayout'
-layout: api
-seo:
- description: RootLayout
----
-
-
-
-
-
-
-mainScreen: ScreenMetrics",
- "sources": [
- {
- "fileName": "@nativescript/core/platform/index.d.ts",
- "line": 121,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets information about the main screen of the current device."
- }
- ]
- },
- "url": "/api/class/Screen#mainscreen"
- }
- ]
- },
- "2324": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Screen#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Screen(): Screen",
- "url": "/api/class/Screen#constructor-new-screen",
- "parameters": [],
- "returns": "Screen"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Screen.md b/content/api/class/Screen.md
deleted file mode 100644
index a381bd5c..00000000
--- a/content/api/class/Screen.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-title: Screen
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Screen'
-layout: api
-seo:
- description: "An object describing general information about a display."
----
-
-
-
-
-
-
-scrollEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 13,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to scroll event."
- }
- ]
- },
- "url": "/api/class/ScrollView#scrollevent"
- }
- ]
- },
- "22779": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/ScrollView#layoutchangedevent"
- }
- ]
- },
- "22780": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/ScrollView#showingmodallyevent"
- }
- ]
- },
- "22781": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/ScrollView#shownmodallyevent"
- }
- ]
- },
- "22782": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityblurevent"
- }
- ]
- },
- "22783": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityfocusevent"
- }
- ]
- },
- "22784": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityfocuschangedevent"
- }
- ]
- },
- "22785": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ScrollView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ScrollView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "22794": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ScrollView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ScrollView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22802": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ScrollView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ScrollView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "22808": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ScrollView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ScrollView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "22812": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#accessibilityperformescapeevent"
- }
- ]
- },
- "22813": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ScrollView#loadedevent"
- }
- ]
- },
- "22814": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ScrollView#unloadedevent"
- }
- ]
- },
- "22815": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ScrollView#createdevent"
- }
- ]
- },
- "22816": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ScrollView#disposenativeviewevent"
- }
- ]
- },
- "22817": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ScrollView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ScrollView#propertychangeevent"
- }
- ]
- },
- "22818": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ScrollView#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22826": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ScrollView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22834": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ScrollView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22842": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ScrollView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22850": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ScrollView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22858": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ScrollView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ScrollView(): ScrollView",
- "url": "/api/class/ScrollView#constructor-new-scrollview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "ScrollView"
- }
- ]
- },
- "22860": {
- "name": "isScrollEnabled",
- "type": "Property",
- "url": "/api/class/ScrollView#isscrollenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether scroll is enabled."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isScrollEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether scroll is enabled."
- }
- ]
- },
- "url": "/api/class/ScrollView#isscrollenabled"
- }
- ]
- },
- "22861": {
- "name": "verticalOffset",
- "type": "Property",
- "url": "/api/class/ScrollView#verticaloffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value that contains the vertical offset of the scrolled content."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "verticalOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value that contains the vertical offset of the scrolled content."
- }
- ]
- },
- "url": "/api/class/ScrollView#verticaloffset"
- }
- ]
- },
- "22862": {
- "name": "horizontalOffset",
- "type": "Property",
- "url": "/api/class/ScrollView#horizontaloffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value that contains the horizontal offset of the scrolled content."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "horizontalOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value that contains the horizontal offset of the scrolled content."
- }
- ]
- },
- "url": "/api/class/ScrollView#horizontaloffset"
- }
- ]
- },
- "22863": {
- "name": "scrollableHeight",
- "type": "Property",
- "url": "/api/class/ScrollView#scrollableheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the maximum value for the verticalOffset."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "scrollableHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 33,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the maximum value for the verticalOffset."
- }
- ]
- },
- "url": "/api/class/ScrollView#scrollableheight"
- }
- ]
- },
- "22864": {
- "name": "scrollableWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#scrollablewidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the maximum value for the horizontalOffset."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "scrollableWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 38,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the maximum value for the horizontalOffset."
- }
- ]
- },
- "url": "/api/class/ScrollView#scrollablewidth"
- }
- ]
- },
- "22865": {
- "name": "scrollBarIndicatorVisible",
- "type": "Property",
- "url": "/api/class/ScrollView#scrollbarindicatorvisible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Toggles scrollbar indicator visibility"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "scrollBarIndicatorVisible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Toggles scrollbar indicator visibility"
- }
- ]
- },
- "url": "/api/class/ScrollView#scrollbarindicatorvisible"
- }
- ]
- },
- "22866": {
- "name": "scrollToVerticalOffset",
- "type": "Method",
- "url": "/api/class/ScrollView#scrolltoverticaloffset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "scrollToVerticalOffset(value: number, animated: boolean): any",
- "url": "/api/class/ScrollView#scrolltoverticaloffset-scrolltoverticaloffset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Scrolls the content the specified vertical offset position."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The offset value"
- }
- ]
- }
- },
- {
- "name": "animated",
- "type": "boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "true for animated scroll, false for immediate scroll."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "22870": {
- "name": "scrollToHorizontalOffset",
- "type": "Method",
- "url": "/api/class/ScrollView#scrolltohorizontaloffset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "scrollToHorizontalOffset(value: number, animated: boolean): any",
- "url": "/api/class/ScrollView#scrolltohorizontaloffset-scrolltohorizontaloffset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 57,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Scrolls the content the specified horizontal offset position."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The offset value"
- }
- ]
- }
- },
- {
- "name": "animated",
- "type": "boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "true for animated scroll, false for immediate scroll."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "22874": {
- "name": "orientation",
- "type": "Property",
- "url": "/api/class/ScrollView#orientation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets direction in which the content can be scrolled."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "orientation: OrientationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 62,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets direction in which the content can be scrolled."
- }
- ]
- },
- "url": "/api/class/ScrollView#orientation"
- }
- ]
- },
- "22875": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ScrollView#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"scroll\", callback: (args: ScrollEventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 75,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a scroll event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"scroll\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ScrollEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22890": {
- "name": "_onOrientationChanged",
- "type": "Method",
- "url": "/api/class/ScrollView#onorientationchanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onOrientationChanged(): void",
- "url": "/api/class/ScrollView#onorientationchanged-onorientationchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/scroll-view/index.d.ts",
- "line": 77,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "22892": {
- "name": "content",
- "type": "Property",
- "url": "/api/class/ScrollView#content",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "content: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 4,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#content"
- }
- ]
- },
- "22893": {
- "name": "layoutView",
- "type": "Method",
- "url": "/api/class/ScrollView#layoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutView(): View",
- "url": "/api/class/ScrollView#layoutview-layoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 5,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "22895": {
- "name": "_addChildFromBuilder",
- "type": "Method",
- "url": "/api/class/ScrollView#addchildfrombuilder",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addChildFromBuilder(name: string, value: any): void",
- "url": "/api/class/ScrollView#addchildfrombuilder-addchildfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/content-view/index.d.ts",
- "line": 6,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22910": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ScrollView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ScrollView#iosoverflowsafearea"
- }
- ]
- },
- "22911": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/ScrollView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/ScrollView#android"
- }
- ]
- },
- "22912": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/ScrollView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/ScrollView#ios"
- }
- ]
- },
- "22913": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ScrollView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/ScrollView#bindingcontext"
- }
- ]
- },
- "22914": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/ScrollView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#bordercolor"
- }
- ]
- },
- "22915": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/ScrollView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#bordertopcolor"
- }
- ]
- },
- "22916": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/ScrollView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderrightcolor"
- }
- ]
- },
- "22917": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/ScrollView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderbottomcolor"
- }
- ]
- },
- "22918": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/ScrollView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderleftcolor"
- }
- ]
- },
- "22919": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderwidth"
- }
- ]
- },
- "22920": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#bordertopwidth"
- }
- ]
- },
- "22921": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderrightwidth"
- }
- ]
- },
- "22922": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderbottomwidth"
- }
- ]
- },
- "22923": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderleftwidth"
- }
- ]
- },
- "22924": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/ScrollView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderradius"
- }
- ]
- },
- "22925": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/ScrollView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#bordertopleftradius"
- }
- ]
- },
- "22926": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/ScrollView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#bordertoprightradius"
- }
- ]
- },
- "22927": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/ScrollView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderbottomrightradius"
- }
- ]
- },
- "22928": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/ScrollView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#borderbottomleftradius"
- }
- ]
- },
- "22929": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/ScrollView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#color"
- }
- ]
- },
- "22930": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/ScrollView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessible"
- }
- ]
- },
- "22931": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityhidden"
- }
- ]
- },
- "22932": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityidentifier"
- }
- ]
- },
- "22933": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityrole"
- }
- ]
- },
- "22934": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilitystate"
- }
- ]
- },
- "22935": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilitylabel"
- }
- ]
- },
- "22936": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityvalue"
- }
- ]
- },
- "22937": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilityhint"
- }
- ]
- },
- "22938": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#accessibilityliveregion"
- }
- ]
- },
- "22939": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilitylanguage"
- }
- ]
- },
- "22940": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/ScrollView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/ScrollView#accessibilitymediasession"
- }
- ]
- },
- "22941": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/ScrollView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/ScrollView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "22942": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/ScrollView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ScrollView#iosaccessibilityminfontscale"
- }
- ]
- },
- "22943": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/ScrollView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/ScrollView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "22944": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ScrollView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/ScrollView#androidcontentdescriptionupdated"
- }
- ]
- },
- "22945": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/ScrollView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#automationtext"
- }
- ]
- },
- "22946": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/ScrollView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/ScrollView#androidelevation"
- }
- ]
- },
- "22947": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/ScrollView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/ScrollView#androiddynamicelevationoffset"
- }
- ]
- },
- "22948": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/ScrollView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/ScrollView#background"
- }
- ]
- },
- "22949": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/ScrollView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#backgroundcolor"
- }
- ]
- },
- "22950": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/ScrollView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#backgroundimage"
- }
- ]
- },
- "22951": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/ScrollView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#boxshadow"
- }
- ]
- },
- "22952": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/ScrollView#minwidth"
- }
- ]
- },
- "22953": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/ScrollView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/ScrollView#minheight"
- }
- ]
- },
- "22954": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/ScrollView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#width"
- }
- ]
- },
- "22955": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/ScrollView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#height"
- }
- ]
- },
- "22956": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/ScrollView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/ScrollView#margin"
- }
- ]
- },
- "22957": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/ScrollView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/ScrollView#marginleft"
- }
- ]
- },
- "22958": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/ScrollView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/ScrollView#margintop"
- }
- ]
- },
- "22959": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/ScrollView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/ScrollView#marginright"
- }
- ]
- },
- "22960": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/ScrollView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/ScrollView#marginbottom"
- }
- ]
- },
- "22961": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/ScrollView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/ScrollView#horizontalalignment"
- }
- ]
- },
- "22962": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/ScrollView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/ScrollView#verticalalignment"
- }
- ]
- },
- "22963": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/ScrollView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#visibility"
- }
- ]
- },
- "22964": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/ScrollView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/ScrollView#opacity"
- }
- ]
- },
- "22965": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/ScrollView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/ScrollView#rotate"
- }
- ]
- },
- "22966": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/ScrollView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/ScrollView#rotatex"
- }
- ]
- },
- "22967": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/ScrollView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/ScrollView#rotatey"
- }
- ]
- },
- "22968": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/ScrollView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/ScrollView#perspective"
- }
- ]
- },
- "22969": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/ScrollView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ScrollView#translatex"
- }
- ]
- },
- "22970": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/ScrollView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/ScrollView#translatey"
- }
- ]
- },
- "22971": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/ScrollView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#scalex"
- }
- ]
- },
- "22972": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/ScrollView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#scaley"
- }
- ]
- },
- "22973": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ScrollView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#originx"
- }
- ]
- },
- "22974": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ScrollView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#originy"
- }
- ]
- },
- "22975": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ScrollView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#isenabled"
- }
- ]
- },
- "22976": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ScrollView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/ScrollView#isuserinteractionenabled"
- }
- ]
- },
- "22977": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ScrollView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/ScrollView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "22978": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ScrollView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/ScrollView#iosignoresafearea"
- }
- ]
- },
- "22979": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/ScrollView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/ScrollView#islayoutvalid"
- }
- ]
- },
- "22980": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/ScrollView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/ScrollView#csstype"
- }
- ]
- },
- "22981": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ScrollView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#cssclasses"
- }
- ]
- },
- "22982": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ScrollView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#csspseudoclasses"
- }
- ]
- },
- "22983": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ScrollView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ScrollView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22987": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ScrollView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/ScrollView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "22994": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ScrollView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ScrollView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22996": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ScrollView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ScrollView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "22998": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ScrollView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ScrollView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "23000": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ScrollView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ScrollView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23004": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ScrollView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ScrollView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23010": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ScrollView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ScrollView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23014": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ScrollView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ScrollView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23020": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ScrollView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ScrollView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23022": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ScrollView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ScrollView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "23025": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ScrollView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/ScrollView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "23033": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/ScrollView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/ScrollView#modal"
- }
- ]
- },
- "23034": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ScrollView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/ScrollView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "23037": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ScrollView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/ScrollView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "23040": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ScrollView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ScrollView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "23047": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ScrollView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ScrollView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "23049": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ScrollView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ScrollView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "23051": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ScrollView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ScrollView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "23054": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ScrollView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ScrollView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "23056": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ScrollView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ScrollView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23068": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ScrollView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ScrollView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "23070": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ScrollView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ScrollView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23072": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ScrollView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ScrollView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "23074": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ScrollView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ScrollView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23080": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/ScrollView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/ScrollView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23082": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/ScrollView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/ScrollView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23084": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/ScrollView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/ScrollView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23086": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ScrollView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ScrollView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23092": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ScrollView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ScrollView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23095": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ScrollView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ScrollView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23098": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ScrollView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ScrollView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23167": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ScrollView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/ScrollView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23173": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ScrollView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ScrollView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23178": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ScrollView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ScrollView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23180": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ScrollView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ScrollView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23182": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ScrollView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ScrollView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23185": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ScrollView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/ScrollView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "23188": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ScrollView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/ScrollView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "23192": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ScrollView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#testid"
- }
- ]
- },
- "23193": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ScrollView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#touchanimation"
- }
- ]
- },
- "23194": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ScrollView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#ignoretouchanimation"
- }
- ]
- },
- "23195": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ScrollView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#touchdelay"
- }
- ]
- },
- "23196": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ScrollView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#closemodalcallback"
- }
- ]
- },
- "23197": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ScrollView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ScrollView#transitionid"
- }
- ]
- },
- "23198": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ScrollView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#islayoutvalid"
- }
- ]
- },
- "23199": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ScrollView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ScrollView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23201": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ScrollView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ScrollView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23204": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ScrollView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23212": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ScrollView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23220": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ScrollView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23228": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ScrollView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ScrollView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "23231": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ScrollView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ScrollView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23234": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ScrollView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ScrollView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23238": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ScrollView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ScrollView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23244": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ScrollView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ScrollView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23246": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ScrollView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ScrollView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23248": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ScrollView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ScrollView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23250": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ScrollView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ScrollView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23254": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ScrollView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ScrollView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23258": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ScrollView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ScrollView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "23262": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ScrollView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ScrollView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "23266": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ScrollView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ScrollView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23268": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ScrollView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ScrollView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23274": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ScrollView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ScrollView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23276": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ScrollView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ScrollView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23280": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ScrollView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#domnode"
- }
- ]
- },
- "23281": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ScrollView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#recyclenativeview"
- }
- ]
- },
- "23282": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ScrollView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ScrollView#viewcontroller"
- }
- ]
- },
- "23283": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ScrollView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ScrollView#nativeviewprotected"
- }
- ]
- },
- "23284": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ScrollView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ScrollView#parent"
- }
- ]
- },
- "23285": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ScrollView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ScrollView#iscollapsed"
- }
- ]
- },
- "23286": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ScrollView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ScrollView#id"
- }
- ]
- },
- "23287": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ScrollView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ScrollView#classname"
- }
- ]
- },
- "23288": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ScrollView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ScrollView#sharedtransitiontag"
- }
- ]
- },
- "23289": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ScrollView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ScrollView#sharedtransitionignore"
- }
- ]
- },
- "23290": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ScrollView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#domid"
- }
- ]
- },
- "23291": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ScrollView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#context"
- }
- ]
- },
- "23292": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ScrollView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#isaddedtonativevisualtree"
- }
- ]
- },
- "23293": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ScrollView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#cssstate"
- }
- ]
- },
- "23294": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ScrollView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#stylescope"
- }
- ]
- },
- "23299": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ScrollView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ScrollView#suspendnativeupdatescount"
- }
- ]
- },
- "23300": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ScrollView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#isstylescopehost"
- }
- ]
- },
- "23301": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ScrollView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "23302": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ScrollView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#left"
- }
- ]
- },
- "23303": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ScrollView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#top"
- }
- ]
- },
- "23304": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveleft"
- }
- ]
- },
- "23305": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivetop"
- }
- ]
- },
- "23306": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ScrollView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#dock"
- }
- ]
- },
- "23307": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ScrollView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#row"
- }
- ]
- },
- "23308": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ScrollView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#col"
- }
- ]
- },
- "23309": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ScrollView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#column"
- }
- ]
- },
- "23310": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ScrollView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#rowspan"
- }
- ]
- },
- "23311": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ScrollView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#colspan"
- }
- ]
- },
- "23312": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ScrollView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#columnspan"
- }
- ]
- },
- "23313": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ScrollView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#order"
- }
- ]
- },
- "23314": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ScrollView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#flexgrow"
- }
- ]
- },
- "23315": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ScrollView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#flexshrink"
- }
- ]
- },
- "23316": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ScrollView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#flexwrapbefore"
- }
- ]
- },
- "23317": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ScrollView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#alignself"
- }
- ]
- },
- "23318": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ScrollView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#oldleft"
- }
- ]
- },
- "23319": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ScrollView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#oldtop"
- }
- ]
- },
- "23320": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ScrollView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#oldright"
- }
- ]
- },
- "23321": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ScrollView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#oldbottom"
- }
- ]
- },
- "23322": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ScrollView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "23323": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveminwidth"
- }
- ]
- },
- "23324": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveminheight"
- }
- ]
- },
- "23325": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivewidth"
- }
- ]
- },
- "23326": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveheight"
- }
- ]
- },
- "23327": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivemargintop"
- }
- ]
- },
- "23328": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivemarginright"
- }
- ]
- },
- "23329": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivemarginbottom"
- }
- ]
- },
- "23330": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivemarginleft"
- }
- ]
- },
- "23331": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivepaddingtop"
- }
- ]
- },
- "23332": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivepaddingright"
- }
- ]
- },
- "23333": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivepaddingbottom"
- }
- ]
- },
- "23334": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivepaddingleft"
- }
- ]
- },
- "23335": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectivebordertopwidth"
- }
- ]
- },
- "23336": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveborderrightwidth"
- }
- ]
- },
- "23337": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveborderbottomwidth"
- }
- ]
- },
- "23338": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ScrollView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#effectiveborderleftwidth"
- }
- ]
- },
- "23339": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ScrollView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#defaultpaddingtop"
- }
- ]
- },
- "23340": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ScrollView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#defaultpaddingright"
- }
- ]
- },
- "23341": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ScrollView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#defaultpaddingbottom"
- }
- ]
- },
- "23342": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ScrollView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#defaultpaddingleft"
- }
- ]
- },
- "23343": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ScrollView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "url": "/api/class/ScrollView#ispaddingrelative"
- }
- ]
- },
- "23345": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ScrollView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ScrollView#reusable"
- }
- ]
- },
- "23346": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ScrollView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ScrollView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "23350": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ScrollView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ScrollView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "23354": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ScrollView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ScrollView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23356": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ScrollView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ScrollView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "23360": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ScrollView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ScrollView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23362": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ScrollView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ScrollView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23366": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ScrollView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ScrollView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "23370": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ScrollView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ScrollView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "23374": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ScrollView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ScrollView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "23376": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ScrollView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ScrollView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23378": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ScrollView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ScrollView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23382": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ScrollView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ScrollView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23384": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ScrollView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ScrollView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23386": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ScrollView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ScrollView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23389": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ScrollView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ScrollView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23392": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ScrollView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ScrollView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "23398": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ScrollView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ScrollView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23400": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ScrollView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ScrollView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23402": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ScrollView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ScrollView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23405": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ScrollView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ScrollView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23408": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ScrollView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ScrollView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23412": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ScrollView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ScrollView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23415": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ScrollView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ScrollView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23419": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ScrollView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ScrollView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23423": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ScrollView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ScrollView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23426": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ScrollView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ScrollView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23428": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ScrollView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ScrollView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23431": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ScrollView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ScrollView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23434": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ScrollView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ScrollView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23437": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ScrollView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ScrollView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "23439": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ScrollView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ScrollView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23441": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ScrollView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ScrollView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23443": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ScrollView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ScrollView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23448": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ScrollView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ScrollView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23451": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ScrollView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ScrollView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23454": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ScrollView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ScrollView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23457": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ScrollView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ScrollView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "23460": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ScrollView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ScrollView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23464": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ScrollView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ScrollView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23467": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ScrollView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ScrollView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23471": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ScrollView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ScrollView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23474": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ScrollView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ScrollView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23477": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ScrollView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ScrollView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23479": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ScrollView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ScrollView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23483": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ScrollView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ScrollView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23486": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ScrollView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ScrollView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23488": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ScrollView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ScrollView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23491": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ScrollView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ScrollView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "23494": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ScrollView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ScrollView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23498": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ScrollView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ScrollView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23506": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ScrollView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ScrollView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23510": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ScrollView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ScrollView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23515": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ScrollView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ScrollView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23518": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ScrollView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ScrollView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "23523": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ScrollView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ScrollView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ContentView"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ScrollView.md b/content/api/class/ScrollView.md
deleted file mode 100644
index 34ff8ae9..00000000
--- a/content/api/class/ScrollView.md
+++ /dev/null
@@ -1,220 +0,0 @@
----
-title: ScrollView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ScrollView'
-layout: api
-seo:
- description: "Represents a scrollable area that can have content that is larger than its bounds."
----
-
-
-
-
-
-
-submitEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 13,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to submit event."
- }
- ]
- },
- "url": "/api/class/SearchBar#submitevent"
- }
- ]
- },
- "23533": {
- "name": "clearEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#clearevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to clear event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "clearEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 18,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to clear event."
- }
- ]
- },
- "url": "/api/class/SearchBar#clearevent"
- }
- ]
- },
- "23534": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/SearchBar#layoutchangedevent"
- }
- ]
- },
- "23535": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/SearchBar#showingmodallyevent"
- }
- ]
- },
- "23536": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/SearchBar#shownmodallyevent"
- }
- ]
- },
- "23537": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityblurevent"
- }
- ]
- },
- "23538": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityfocusevent"
- }
- ]
- },
- "23539": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityfocuschangedevent"
- }
- ]
- },
- "23540": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/SearchBar#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/SearchBar#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "23549": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/SearchBar#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/SearchBar#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23557": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/SearchBar#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/SearchBar#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "23563": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/SearchBar#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/SearchBar#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "23567": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#accessibilityperformescapeevent"
- }
- ]
- },
- "23568": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/SearchBar#loadedevent"
- }
- ]
- },
- "23569": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/SearchBar#unloadedevent"
- }
- ]
- },
- "23570": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/SearchBar#createdevent"
- }
- ]
- },
- "23571": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/SearchBar#disposenativeviewevent"
- }
- ]
- },
- "23572": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/SearchBar#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/SearchBar#propertychangeevent"
- }
- ]
- },
- "23573": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/SearchBar#on-4",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#on-4-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23581": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/SearchBar#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23589": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/SearchBar#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23597": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/SearchBar#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23605": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/SearchBar#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23613": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/SearchBar#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SearchBar(): SearchBar",
- "url": "/api/class/SearchBar#constructor-new-searchbar",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "SearchBar"
- }
- ]
- },
- "23615": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/SearchBar#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/SearchView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/SearchView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/SearchBar#android"
- }
- ]
- },
- "23616": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/SearchBar#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UISearchBar](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISearchBar_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UISearchBar](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISearchBar_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/SearchBar#ios"
- }
- ]
- },
- "23617": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/SearchBar#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a search bar text."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 33,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a search bar text."
- }
- ]
- },
- "url": "/api/class/SearchBar#text"
- }
- ]
- },
- "23618": {
- "name": "hint",
- "type": "Property",
- "url": "/api/class/SearchBar#hint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text of the search bar text field hint/placeholder."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "hint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 38,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text of the search bar text field hint/placeholder."
- }
- ]
- },
- "url": "/api/class/SearchBar#hint"
- }
- ]
- },
- "23619": {
- "name": "textFieldBackgroundColor",
- "type": "Property",
- "url": "/api/class/SearchBar#textfieldbackgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the TextField background color of the SearchBar component."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textFieldBackgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the TextField background color of the SearchBar component."
- }
- ]
- },
- "url": "/api/class/SearchBar#textfieldbackgroundcolor"
- }
- ]
- },
- "23620": {
- "name": "textFieldHintColor",
- "type": "Property",
- "url": "/api/class/SearchBar#textfieldhintcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the TextField Hint color of the SearchBar component."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textFieldHintColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the TextField Hint color of the SearchBar component."
- }
- ]
- },
- "url": "/api/class/SearchBar#textfieldhintcolor"
- }
- ]
- },
- "23621": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/SearchBar#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"submit\", callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 61,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a search bar search is submitted."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"submit\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"close\", callback: (args: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 66,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a search bar search is closed."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"close\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23643": {
- "name": "dismissSoftInput",
- "type": "Method",
- "url": "/api/class/SearchBar#dismisssoftinput",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "dismissSoftInput(): void",
- "url": "/api/class/SearchBar#dismisssoftinput-dismisssoftinput-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/search-bar/index.d.ts",
- "line": 71,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hides the soft input method, usually a soft keyboard."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23645": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/SearchBar#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/SearchBar#bindingcontext"
- }
- ]
- },
- "23646": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/SearchBar#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#bordercolor"
- }
- ]
- },
- "23647": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/SearchBar#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#bordertopcolor"
- }
- ]
- },
- "23648": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/SearchBar#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderrightcolor"
- }
- ]
- },
- "23649": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/SearchBar#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderbottomcolor"
- }
- ]
- },
- "23650": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/SearchBar#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderleftcolor"
- }
- ]
- },
- "23651": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderwidth"
- }
- ]
- },
- "23652": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#bordertopwidth"
- }
- ]
- },
- "23653": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderrightwidth"
- }
- ]
- },
- "23654": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderbottomwidth"
- }
- ]
- },
- "23655": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderleftwidth"
- }
- ]
- },
- "23656": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/SearchBar#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderradius"
- }
- ]
- },
- "23657": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/SearchBar#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#bordertopleftradius"
- }
- ]
- },
- "23658": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/SearchBar#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#bordertoprightradius"
- }
- ]
- },
- "23659": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/SearchBar#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderbottomrightradius"
- }
- ]
- },
- "23660": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/SearchBar#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#borderbottomleftradius"
- }
- ]
- },
- "23661": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/SearchBar#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#color"
- }
- ]
- },
- "23662": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/SearchBar#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessible"
- }
- ]
- },
- "23663": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityhidden"
- }
- ]
- },
- "23664": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityidentifier"
- }
- ]
- },
- "23665": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityrole"
- }
- ]
- },
- "23666": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilitystate"
- }
- ]
- },
- "23667": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilitylabel"
- }
- ]
- },
- "23668": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityvalue"
- }
- ]
- },
- "23669": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilityhint"
- }
- ]
- },
- "23670": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#accessibilityliveregion"
- }
- ]
- },
- "23671": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilitylanguage"
- }
- ]
- },
- "23672": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/SearchBar#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/SearchBar#accessibilitymediasession"
- }
- ]
- },
- "23673": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/SearchBar#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/SearchBar#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "23674": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/SearchBar#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/SearchBar#iosaccessibilityminfontscale"
- }
- ]
- },
- "23675": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/SearchBar#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/SearchBar#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "23676": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/SearchBar#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/SearchBar#androidcontentdescriptionupdated"
- }
- ]
- },
- "23677": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/SearchBar#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#automationtext"
- }
- ]
- },
- "23678": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/SearchBar#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/SearchBar#androidelevation"
- }
- ]
- },
- "23679": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/SearchBar#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/SearchBar#androiddynamicelevationoffset"
- }
- ]
- },
- "23680": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/SearchBar#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/SearchBar#background"
- }
- ]
- },
- "23681": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/SearchBar#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#backgroundcolor"
- }
- ]
- },
- "23682": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/SearchBar#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#backgroundimage"
- }
- ]
- },
- "23683": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/SearchBar#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#boxshadow"
- }
- ]
- },
- "23684": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/SearchBar#minwidth"
- }
- ]
- },
- "23685": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/SearchBar#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/SearchBar#minheight"
- }
- ]
- },
- "23686": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/SearchBar#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#width"
- }
- ]
- },
- "23687": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/SearchBar#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#height"
- }
- ]
- },
- "23688": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/SearchBar#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/SearchBar#margin"
- }
- ]
- },
- "23689": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/SearchBar#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/SearchBar#marginleft"
- }
- ]
- },
- "23690": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/SearchBar#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/SearchBar#margintop"
- }
- ]
- },
- "23691": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/SearchBar#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/SearchBar#marginright"
- }
- ]
- },
- "23692": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/SearchBar#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/SearchBar#marginbottom"
- }
- ]
- },
- "23693": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/SearchBar#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/SearchBar#horizontalalignment"
- }
- ]
- },
- "23694": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/SearchBar#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/SearchBar#verticalalignment"
- }
- ]
- },
- "23695": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/SearchBar#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#visibility"
- }
- ]
- },
- "23696": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/SearchBar#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/SearchBar#opacity"
- }
- ]
- },
- "23697": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/SearchBar#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/SearchBar#rotate"
- }
- ]
- },
- "23698": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/SearchBar#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/SearchBar#rotatex"
- }
- ]
- },
- "23699": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/SearchBar#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/SearchBar#rotatey"
- }
- ]
- },
- "23700": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/SearchBar#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/SearchBar#perspective"
- }
- ]
- },
- "23701": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/SearchBar#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/SearchBar#translatex"
- }
- ]
- },
- "23702": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/SearchBar#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/SearchBar#translatey"
- }
- ]
- },
- "23703": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/SearchBar#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#scalex"
- }
- ]
- },
- "23704": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/SearchBar#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#scaley"
- }
- ]
- },
- "23705": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/SearchBar#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#originx"
- }
- ]
- },
- "23706": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/SearchBar#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#originy"
- }
- ]
- },
- "23707": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/SearchBar#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#isenabled"
- }
- ]
- },
- "23708": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/SearchBar#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/SearchBar#isuserinteractionenabled"
- }
- ]
- },
- "23709": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/SearchBar#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/SearchBar#iosoverflowsafearea"
- }
- ]
- },
- "23710": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/SearchBar#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/SearchBar#iosoverflowsafeareaenabled"
- }
- ]
- },
- "23711": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/SearchBar#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/SearchBar#iosignoresafearea"
- }
- ]
- },
- "23712": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/SearchBar#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/SearchBar#islayoutvalid"
- }
- ]
- },
- "23713": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/SearchBar#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/SearchBar#csstype"
- }
- ]
- },
- "23714": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/SearchBar#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#cssclasses"
- }
- ]
- },
- "23715": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/SearchBar#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#csspseudoclasses"
- }
- ]
- },
- "23716": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/SearchBar#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/SearchBar#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23720": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/SearchBar#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/SearchBar#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23727": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/SearchBar#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/SearchBar#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "23729": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/SearchBar#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/SearchBar#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "23731": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/SearchBar#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/SearchBar#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "23733": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/SearchBar#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/SearchBar#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23737": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/SearchBar#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/SearchBar#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23743": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/SearchBar#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/SearchBar#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23747": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/SearchBar#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/SearchBar#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23753": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/SearchBar#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/SearchBar#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23755": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/SearchBar#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/SearchBar#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "23758": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/SearchBar#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/SearchBar#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "23766": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/SearchBar#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/SearchBar#modal"
- }
- ]
- },
- "23767": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/SearchBar#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/SearchBar#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "23770": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/SearchBar#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/SearchBar#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "23773": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/SearchBar#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/SearchBar#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "23780": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/SearchBar#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/SearchBar#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "23782": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/SearchBar#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/SearchBar#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "23784": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/SearchBar#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/SearchBar#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "23787": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/SearchBar#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/SearchBar#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "23789": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/SearchBar#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/SearchBar#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23801": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/SearchBar#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/SearchBar#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "23803": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/SearchBar#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/SearchBar#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23805": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/SearchBar#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/SearchBar#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "23807": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/SearchBar#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/SearchBar#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23813": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/SearchBar#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/SearchBar#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23815": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/SearchBar#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/SearchBar#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "23817": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/SearchBar#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/SearchBar#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23819": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/SearchBar#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/SearchBar#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23825": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/SearchBar#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/SearchBar#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23828": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/SearchBar#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/SearchBar#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23831": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/SearchBar#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/SearchBar#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23900": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/SearchBar#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/SearchBar#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23906": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/SearchBar#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/SearchBar#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23911": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/SearchBar#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/SearchBar#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23913": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/SearchBar#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/SearchBar#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23915": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/SearchBar#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/SearchBar#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "23918": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/SearchBar#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/SearchBar#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "23921": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/SearchBar#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/SearchBar#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "23925": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/SearchBar#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#testid"
- }
- ]
- },
- "23926": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/SearchBar#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#touchanimation"
- }
- ]
- },
- "23927": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/SearchBar#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#ignoretouchanimation"
- }
- ]
- },
- "23928": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/SearchBar#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#touchdelay"
- }
- ]
- },
- "23929": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/SearchBar#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#closemodalcallback"
- }
- ]
- },
- "23930": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/SearchBar#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/SearchBar#transitionid"
- }
- ]
- },
- "23931": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/SearchBar#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#islayoutvalid"
- }
- ]
- },
- "23932": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/SearchBar#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/SearchBar#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23934": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/SearchBar#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/SearchBar#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23937": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/SearchBar#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23945": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/SearchBar#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23953": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/SearchBar#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23961": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/SearchBar#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/SearchBar#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "23964": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/SearchBar#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/SearchBar#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23967": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/SearchBar#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/SearchBar#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23971": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/SearchBar#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/SearchBar#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "23977": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/SearchBar#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/SearchBar#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23979": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/SearchBar#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/SearchBar#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23981": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/SearchBar#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/SearchBar#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "23983": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/SearchBar#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/SearchBar#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23987": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/SearchBar#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/SearchBar#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "23991": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/SearchBar#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/SearchBar#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "23995": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/SearchBar#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/SearchBar#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "23999": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/SearchBar#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/SearchBar#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24001": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/SearchBar#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/SearchBar#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24007": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/SearchBar#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/SearchBar#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24009": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/SearchBar#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/SearchBar#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24013": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/SearchBar#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#domnode"
- }
- ]
- },
- "24014": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/SearchBar#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#recyclenativeview"
- }
- ]
- },
- "24015": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/SearchBar#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/SearchBar#viewcontroller"
- }
- ]
- },
- "24016": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/SearchBar#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/SearchBar#nativeviewprotected"
- }
- ]
- },
- "24017": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/SearchBar#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/SearchBar#parent"
- }
- ]
- },
- "24018": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/SearchBar#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/SearchBar#iscollapsed"
- }
- ]
- },
- "24019": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/SearchBar#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/SearchBar#id"
- }
- ]
- },
- "24020": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/SearchBar#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/SearchBar#classname"
- }
- ]
- },
- "24021": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/SearchBar#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/SearchBar#sharedtransitiontag"
- }
- ]
- },
- "24022": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/SearchBar#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/SearchBar#sharedtransitionignore"
- }
- ]
- },
- "24023": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/SearchBar#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#domid"
- }
- ]
- },
- "24024": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/SearchBar#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#context"
- }
- ]
- },
- "24025": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/SearchBar#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#isaddedtonativevisualtree"
- }
- ]
- },
- "24026": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/SearchBar#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#cssstate"
- }
- ]
- },
- "24027": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/SearchBar#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#stylescope"
- }
- ]
- },
- "24032": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/SearchBar#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/SearchBar#suspendnativeupdatescount"
- }
- ]
- },
- "24033": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/SearchBar#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#isstylescopehost"
- }
- ]
- },
- "24034": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/SearchBar#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "24035": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/SearchBar#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#left"
- }
- ]
- },
- "24036": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/SearchBar#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#top"
- }
- ]
- },
- "24037": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveleft"
- }
- ]
- },
- "24038": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivetop"
- }
- ]
- },
- "24039": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/SearchBar#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#dock"
- }
- ]
- },
- "24040": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/SearchBar#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#row"
- }
- ]
- },
- "24041": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/SearchBar#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#col"
- }
- ]
- },
- "24042": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/SearchBar#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#column"
- }
- ]
- },
- "24043": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/SearchBar#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#rowspan"
- }
- ]
- },
- "24044": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/SearchBar#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#colspan"
- }
- ]
- },
- "24045": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/SearchBar#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#columnspan"
- }
- ]
- },
- "24046": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/SearchBar#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#order"
- }
- ]
- },
- "24047": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/SearchBar#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#flexgrow"
- }
- ]
- },
- "24048": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/SearchBar#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#flexshrink"
- }
- ]
- },
- "24049": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/SearchBar#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#flexwrapbefore"
- }
- ]
- },
- "24050": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/SearchBar#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#alignself"
- }
- ]
- },
- "24051": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/SearchBar#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#oldleft"
- }
- ]
- },
- "24052": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/SearchBar#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#oldtop"
- }
- ]
- },
- "24053": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/SearchBar#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#oldright"
- }
- ]
- },
- "24054": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/SearchBar#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#oldbottom"
- }
- ]
- },
- "24055": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/SearchBar#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#ignoreflexminwidthheightreset"
- }
- ]
- },
- "24056": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveminwidth"
- }
- ]
- },
- "24057": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveminheight"
- }
- ]
- },
- "24058": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivewidth"
- }
- ]
- },
- "24059": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveheight"
- }
- ]
- },
- "24060": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivemargintop"
- }
- ]
- },
- "24061": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivemarginright"
- }
- ]
- },
- "24062": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivemarginbottom"
- }
- ]
- },
- "24063": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivemarginleft"
- }
- ]
- },
- "24064": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivepaddingtop"
- }
- ]
- },
- "24065": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivepaddingright"
- }
- ]
- },
- "24066": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivepaddingbottom"
- }
- ]
- },
- "24067": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivepaddingleft"
- }
- ]
- },
- "24068": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectivebordertopwidth"
- }
- ]
- },
- "24069": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveborderrightwidth"
- }
- ]
- },
- "24070": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveborderbottomwidth"
- }
- ]
- },
- "24071": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/SearchBar#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#effectiveborderleftwidth"
- }
- ]
- },
- "24072": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/SearchBar#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#defaultpaddingtop"
- }
- ]
- },
- "24073": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/SearchBar#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#defaultpaddingright"
- }
- ]
- },
- "24074": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/SearchBar#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#defaultpaddingbottom"
- }
- ]
- },
- "24075": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/SearchBar#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#defaultpaddingleft"
- }
- ]
- },
- "24076": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/SearchBar#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SearchBar#ispaddingrelative"
- }
- ]
- },
- "24078": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/SearchBar#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/SearchBar#reusable"
- }
- ]
- },
- "24079": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/SearchBar#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/SearchBar#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "24083": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/SearchBar#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/SearchBar#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "24087": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/SearchBar#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/SearchBar#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24089": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/SearchBar#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/SearchBar#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "24093": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/SearchBar#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/SearchBar#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24095": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/SearchBar#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/SearchBar#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24099": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/SearchBar#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/SearchBar#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "24103": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/SearchBar#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/SearchBar#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "24107": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/SearchBar#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/SearchBar#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "24109": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/SearchBar#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/SearchBar#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24111": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/SearchBar#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/SearchBar#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24115": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/SearchBar#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/SearchBar#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24117": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/SearchBar#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/SearchBar#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24119": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/SearchBar#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/SearchBar#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24122": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/SearchBar#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/SearchBar#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24125": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/SearchBar#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/SearchBar#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "24131": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/SearchBar#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/SearchBar#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24133": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/SearchBar#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/SearchBar#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24135": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/SearchBar#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/SearchBar#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24138": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/SearchBar#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/SearchBar#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24141": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/SearchBar#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/SearchBar#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24145": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/SearchBar#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/SearchBar#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24148": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/SearchBar#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/SearchBar#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24152": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/SearchBar#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/SearchBar#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24156": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/SearchBar#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/SearchBar#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24159": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/SearchBar#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/SearchBar#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24161": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/SearchBar#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/SearchBar#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24164": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/SearchBar#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/SearchBar#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24167": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/SearchBar#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/SearchBar#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24170": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/SearchBar#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/SearchBar#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "24172": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/SearchBar#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/SearchBar#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24174": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/SearchBar#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/SearchBar#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24176": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/SearchBar#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/SearchBar#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24181": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/SearchBar#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/SearchBar#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24184": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/SearchBar#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/SearchBar#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24187": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/SearchBar#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/SearchBar#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24190": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/SearchBar#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/SearchBar#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "24193": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/SearchBar#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/SearchBar#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24197": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/SearchBar#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/SearchBar#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24200": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/SearchBar#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/SearchBar#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24204": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/SearchBar#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/SearchBar#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24207": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/SearchBar#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/SearchBar#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24210": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/SearchBar#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/SearchBar#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24212": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/SearchBar#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/SearchBar#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24216": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/SearchBar#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/SearchBar#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24219": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/SearchBar#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/SearchBar#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24221": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/SearchBar#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/SearchBar#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24224": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/SearchBar#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/SearchBar#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "24227": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/SearchBar#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/SearchBar#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24231": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/SearchBar#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SearchBar#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24239": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/SearchBar#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/SearchBar#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24243": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/SearchBar#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/SearchBar#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24248": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/SearchBar#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/SearchBar#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24251": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/SearchBar#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/SearchBar#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "24256": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/SearchBar#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/SearchBar#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/SearchBar.md b/content/api/class/SearchBar.md
deleted file mode 100644
index 0f30c745..00000000
--- a/content/api/class/SearchBar.md
+++ /dev/null
@@ -1,192 +0,0 @@
----
-title: SearchBar
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'SearchBar'
-layout: api
-seo:
- description: "Represents a search bar component."
----
-
-
-
-
-
-
-selectedIndexChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 55,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to the selectedIndexChanged event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#selectedindexchangedevent"
- }
- ]
- },
- "24261": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#layoutchangedevent"
- }
- ]
- },
- "24262": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#showingmodallyevent"
- }
- ]
- },
- "24263": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#shownmodallyevent"
- }
- ]
- },
- "24264": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityblurevent"
- }
- ]
- },
- "24265": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityfocusevent"
- }
- ]
- },
- "24266": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityfocuschangedevent"
- }
- ]
- },
- "24267": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/SegmentedBar#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/SegmentedBar#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "24276": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/SegmentedBar#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/SegmentedBar#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24284": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/SegmentedBar#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/SegmentedBar#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "24290": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/SegmentedBar#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/SegmentedBar#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "24294": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#accessibilityperformescapeevent"
- }
- ]
- },
- "24295": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#loadedevent"
- }
- ]
- },
- "24296": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#unloadedevent"
- }
- ]
- },
- "24297": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#createdevent"
- }
- ]
- },
- "24298": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#disposenativeviewevent"
- }
- ]
- },
- "24299": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#propertychangeevent"
- }
- ]
- },
- "24300": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/SegmentedBar#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24308": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/SegmentedBar#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24316": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/SegmentedBar#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24324": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBar#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24332": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24340": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/SegmentedBar#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SegmentedBar(): SegmentedBar",
- "url": "/api/class/SegmentedBar#constructor-new-segmentedbar",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "SegmentedBar"
- }
- ]
- },
- "24342": {
- "name": "selectedIndex",
- "type": "Property",
- "url": "/api/class/SegmentedBar#selectedindex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selected index of the SegmentedBar component."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "selectedIndex: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selected index of the SegmentedBar component."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#selectedindex"
- }
- ]
- },
- "24343": {
- "name": "selectedBackgroundColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#selectedbackgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selected background color of the SegmentedBar component."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "selectedBackgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 45,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selected background color of the SegmentedBar component."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#selectedbackgroundcolor"
- }
- ]
- },
- "24344": {
- "name": "items",
- "type": "Property",
- "url": "/api/class/SegmentedBar#items",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the items of the SegmentedBar."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "items: SegmentedBarItem[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the items of the SegmentedBar."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#items"
- }
- ]
- },
- "24345": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/SegmentedBar#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 63,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "selectedIndexChanged",\n callback: (args: SelectedIndexChangedEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/SegmentedBar#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 68,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when the selected index changes."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"selectedIndexChanged\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: SelectedIndexChangedEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24360": {
- "name": "_addChildFromBuilder",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addchildfrombuilder",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addChildFromBuilder(name: string, value: any): void",
- "url": "/api/class/SegmentedBar#addchildfrombuilder-addchildfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 75,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for every child element declared in xml."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the element."
- }
- ]
- }
- },
- {
- "name": "value",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Value of the element."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24364": {
- "name": "_addArrayFromBuilder",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addarrayfrombuilder",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addArrayFromBuilder(name: string, value: any[]): void",
- "url": "/api/class/SegmentedBar#addarrayfrombuilder-addarrayfrombuilder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 76,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any[]",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24368": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/SegmentedBar#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#android"
- }
- ]
- },
- "24369": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/SegmentedBar#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#ios"
- }
- ]
- },
- "24370": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/SegmentedBar#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#bindingcontext"
- }
- ]
- },
- "24371": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#bordercolor"
- }
- ]
- },
- "24372": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#bordertopcolor"
- }
- ]
- },
- "24373": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderrightcolor"
- }
- ]
- },
- "24374": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderbottomcolor"
- }
- ]
- },
- "24375": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderleftcolor"
- }
- ]
- },
- "24376": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderwidth"
- }
- ]
- },
- "24377": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#bordertopwidth"
- }
- ]
- },
- "24378": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderrightwidth"
- }
- ]
- },
- "24379": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderbottomwidth"
- }
- ]
- },
- "24380": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderleftwidth"
- }
- ]
- },
- "24381": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderradius"
- }
- ]
- },
- "24382": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/SegmentedBar#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#bordertopleftradius"
- }
- ]
- },
- "24383": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/SegmentedBar#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#bordertoprightradius"
- }
- ]
- },
- "24384": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderbottomrightradius"
- }
- ]
- },
- "24385": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/SegmentedBar#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#borderbottomleftradius"
- }
- ]
- },
- "24386": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/SegmentedBar#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#color"
- }
- ]
- },
- "24387": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessible"
- }
- ]
- },
- "24388": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityhidden"
- }
- ]
- },
- "24389": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityidentifier"
- }
- ]
- },
- "24390": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityrole"
- }
- ]
- },
- "24391": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilitystate"
- }
- ]
- },
- "24392": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilitylabel"
- }
- ]
- },
- "24393": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityvalue"
- }
- ]
- },
- "24394": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilityhint"
- }
- ]
- },
- "24395": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#accessibilityliveregion"
- }
- ]
- },
- "24396": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilitylanguage"
- }
- ]
- },
- "24397": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/SegmentedBar#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#accessibilitymediasession"
- }
- ]
- },
- "24398": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "24399": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iosaccessibilityminfontscale"
- }
- ]
- },
- "24400": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "24401": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/SegmentedBar#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#androidcontentdescriptionupdated"
- }
- ]
- },
- "24402": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/SegmentedBar#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#automationtext"
- }
- ]
- },
- "24403": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/SegmentedBar#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#androidelevation"
- }
- ]
- },
- "24404": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/SegmentedBar#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#androiddynamicelevationoffset"
- }
- ]
- },
- "24405": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/SegmentedBar#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#background"
- }
- ]
- },
- "24406": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/SegmentedBar#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#backgroundcolor"
- }
- ]
- },
- "24407": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/SegmentedBar#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#backgroundimage"
- }
- ]
- },
- "24408": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/SegmentedBar#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#boxshadow"
- }
- ]
- },
- "24409": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#minwidth"
- }
- ]
- },
- "24410": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#minheight"
- }
- ]
- },
- "24411": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/SegmentedBar#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#width"
- }
- ]
- },
- "24412": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/SegmentedBar#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#height"
- }
- ]
- },
- "24413": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/SegmentedBar#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#margin"
- }
- ]
- },
- "24414": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBar#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#marginleft"
- }
- ]
- },
- "24415": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/SegmentedBar#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#margintop"
- }
- ]
- },
- "24416": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#marginright"
- }
- ]
- },
- "24417": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBar#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#marginbottom"
- }
- ]
- },
- "24418": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/SegmentedBar#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#horizontalalignment"
- }
- ]
- },
- "24419": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/SegmentedBar#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#verticalalignment"
- }
- ]
- },
- "24420": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/SegmentedBar#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#visibility"
- }
- ]
- },
- "24421": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/SegmentedBar#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#opacity"
- }
- ]
- },
- "24422": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/SegmentedBar#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#rotate"
- }
- ]
- },
- "24423": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/SegmentedBar#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#rotatex"
- }
- ]
- },
- "24424": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/SegmentedBar#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#rotatey"
- }
- ]
- },
- "24425": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/SegmentedBar#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#perspective"
- }
- ]
- },
- "24426": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/SegmentedBar#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#translatex"
- }
- ]
- },
- "24427": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/SegmentedBar#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#translatey"
- }
- ]
- },
- "24428": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/SegmentedBar#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#scalex"
- }
- ]
- },
- "24429": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/SegmentedBar#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#scaley"
- }
- ]
- },
- "24430": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/SegmentedBar#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#originx"
- }
- ]
- },
- "24431": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/SegmentedBar#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#originy"
- }
- ]
- },
- "24432": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/SegmentedBar#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#isenabled"
- }
- ]
- },
- "24433": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/SegmentedBar#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#isuserinteractionenabled"
- }
- ]
- },
- "24434": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iosoverflowsafearea"
- }
- ]
- },
- "24435": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iosoverflowsafeareaenabled"
- }
- ]
- },
- "24436": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iosignoresafearea"
- }
- ]
- },
- "24437": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/SegmentedBar#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#islayoutvalid"
- }
- ]
- },
- "24438": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/SegmentedBar#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#csstype"
- }
- ]
- },
- "24439": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/SegmentedBar#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#cssclasses"
- }
- ]
- },
- "24440": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/SegmentedBar#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#csspseudoclasses"
- }
- ]
- },
- "24441": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/SegmentedBar#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/SegmentedBar#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24445": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/SegmentedBar#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/SegmentedBar#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24452": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/SegmentedBar#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "24454": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/SegmentedBar#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "24456": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/SegmentedBar#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "24458": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/SegmentedBar#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24462": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/SegmentedBar#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24468": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/SegmentedBar#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24472": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/SegmentedBar#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24478": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/SegmentedBar#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/SegmentedBar#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24480": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/SegmentedBar#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "24483": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/SegmentedBar#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/SegmentedBar#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "24491": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/SegmentedBar#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#modal"
- }
- ]
- },
- "24492": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/SegmentedBar#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/SegmentedBar#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "24495": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/SegmentedBar#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/SegmentedBar#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "24498": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/SegmentedBar#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "24505": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/SegmentedBar#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "24507": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/SegmentedBar#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "24509": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/SegmentedBar#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "24512": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/SegmentedBar#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "24514": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/SegmentedBar#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24526": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/SegmentedBar#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "24528": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/SegmentedBar#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/SegmentedBar#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24530": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/SegmentedBar#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "24532": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/SegmentedBar#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24538": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/SegmentedBar#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24540": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/SegmentedBar#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/SegmentedBar#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24542": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/SegmentedBar#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24544": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/SegmentedBar#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24550": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/SegmentedBar#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/SegmentedBar#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24553": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/SegmentedBar#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/SegmentedBar#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24556": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/SegmentedBar#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/SegmentedBar#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24625": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/SegmentedBar#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/SegmentedBar#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24631": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/SegmentedBar#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/SegmentedBar#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24636": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/SegmentedBar#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24638": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/SegmentedBar#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/SegmentedBar#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24640": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/SegmentedBar#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24643": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/SegmentedBar#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "24646": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/SegmentedBar#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "24650": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/SegmentedBar#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#testid"
- }
- ]
- },
- "24651": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/SegmentedBar#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#touchanimation"
- }
- ]
- },
- "24652": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/SegmentedBar#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#ignoretouchanimation"
- }
- ]
- },
- "24653": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/SegmentedBar#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#touchdelay"
- }
- ]
- },
- "24654": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/SegmentedBar#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#closemodalcallback"
- }
- ]
- },
- "24655": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/SegmentedBar#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#transitionid"
- }
- ]
- },
- "24656": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/SegmentedBar#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#islayoutvalid"
- }
- ]
- },
- "24657": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/SegmentedBar#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24659": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/SegmentedBar#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24662": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/SegmentedBar#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24670": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24678": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBar#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24686": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/SegmentedBar#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/SegmentedBar#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "24689": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/SegmentedBar#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/SegmentedBar#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24692": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/SegmentedBar#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24696": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/SegmentedBar#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24702": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/SegmentedBar#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/SegmentedBar#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24704": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/SegmentedBar#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/SegmentedBar#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24706": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/SegmentedBar#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/SegmentedBar#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24708": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/SegmentedBar#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24712": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/SegmentedBar#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24716": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/SegmentedBar#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "24720": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/SegmentedBar#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "24724": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/SegmentedBar#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/SegmentedBar#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24726": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/SegmentedBar#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/SegmentedBar#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24732": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/SegmentedBar#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24734": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/SegmentedBar#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/SegmentedBar#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24738": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/SegmentedBar#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#domnode"
- }
- ]
- },
- "24739": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/SegmentedBar#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#recyclenativeview"
- }
- ]
- },
- "24740": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/SegmentedBar#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#viewcontroller"
- }
- ]
- },
- "24741": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/SegmentedBar#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#nativeviewprotected"
- }
- ]
- },
- "24742": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/SegmentedBar#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#parent"
- }
- ]
- },
- "24743": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/SegmentedBar#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#iscollapsed"
- }
- ]
- },
- "24744": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/SegmentedBar#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#id"
- }
- ]
- },
- "24745": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/SegmentedBar#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#classname"
- }
- ]
- },
- "24746": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/SegmentedBar#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#sharedtransitiontag"
- }
- ]
- },
- "24747": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/SegmentedBar#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/SegmentedBar#sharedtransitionignore"
- }
- ]
- },
- "24748": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/SegmentedBar#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#domid"
- }
- ]
- },
- "24749": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/SegmentedBar#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#context"
- }
- ]
- },
- "24750": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/SegmentedBar#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#isaddedtonativevisualtree"
- }
- ]
- },
- "24751": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/SegmentedBar#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#cssstate"
- }
- ]
- },
- "24752": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/SegmentedBar#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#stylescope"
- }
- ]
- },
- "24757": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/SegmentedBar#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#suspendnativeupdatescount"
- }
- ]
- },
- "24758": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/SegmentedBar#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#isstylescopehost"
- }
- ]
- },
- "24759": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/SegmentedBar#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "24760": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/SegmentedBar#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#left"
- }
- ]
- },
- "24761": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/SegmentedBar#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#top"
- }
- ]
- },
- "24762": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveleft"
- }
- ]
- },
- "24763": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivetop"
- }
- ]
- },
- "24764": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/SegmentedBar#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#dock"
- }
- ]
- },
- "24765": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/SegmentedBar#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#row"
- }
- ]
- },
- "24766": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/SegmentedBar#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#col"
- }
- ]
- },
- "24767": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/SegmentedBar#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#column"
- }
- ]
- },
- "24768": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/SegmentedBar#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#rowspan"
- }
- ]
- },
- "24769": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/SegmentedBar#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#colspan"
- }
- ]
- },
- "24770": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/SegmentedBar#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#columnspan"
- }
- ]
- },
- "24771": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/SegmentedBar#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#order"
- }
- ]
- },
- "24772": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/SegmentedBar#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#flexgrow"
- }
- ]
- },
- "24773": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/SegmentedBar#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#flexshrink"
- }
- ]
- },
- "24774": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/SegmentedBar#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#flexwrapbefore"
- }
- ]
- },
- "24775": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/SegmentedBar#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#alignself"
- }
- ]
- },
- "24776": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBar#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#oldleft"
- }
- ]
- },
- "24777": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/SegmentedBar#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#oldtop"
- }
- ]
- },
- "24778": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#oldright"
- }
- ]
- },
- "24779": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBar#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#oldbottom"
- }
- ]
- },
- "24780": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/SegmentedBar#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#ignoreflexminwidthheightreset"
- }
- ]
- },
- "24781": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveminwidth"
- }
- ]
- },
- "24782": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveminheight"
- }
- ]
- },
- "24783": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivewidth"
- }
- ]
- },
- "24784": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveheight"
- }
- ]
- },
- "24785": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivemargintop"
- }
- ]
- },
- "24786": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivemarginright"
- }
- ]
- },
- "24787": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivemarginbottom"
- }
- ]
- },
- "24788": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivemarginleft"
- }
- ]
- },
- "24789": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivepaddingtop"
- }
- ]
- },
- "24790": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivepaddingright"
- }
- ]
- },
- "24791": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivepaddingbottom"
- }
- ]
- },
- "24792": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivepaddingleft"
- }
- ]
- },
- "24793": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectivebordertopwidth"
- }
- ]
- },
- "24794": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveborderrightwidth"
- }
- ]
- },
- "24795": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveborderbottomwidth"
- }
- ]
- },
- "24796": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBar#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#effectiveborderleftwidth"
- }
- ]
- },
- "24797": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/SegmentedBar#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#defaultpaddingtop"
- }
- ]
- },
- "24798": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/SegmentedBar#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#defaultpaddingright"
- }
- ]
- },
- "24799": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBar#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#defaultpaddingbottom"
- }
- ]
- },
- "24800": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBar#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#defaultpaddingleft"
- }
- ]
- },
- "24801": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/SegmentedBar#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/SegmentedBar#ispaddingrelative"
- }
- ]
- },
- "24803": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/SegmentedBar#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/SegmentedBar#reusable"
- }
- ]
- },
- "24804": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/SegmentedBar#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "24808": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/SegmentedBar#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "24812": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/SegmentedBar#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24814": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/SegmentedBar#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "24818": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/SegmentedBar#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24820": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/SegmentedBar#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24824": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/SegmentedBar#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "24828": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/SegmentedBar#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/SegmentedBar#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "24832": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/SegmentedBar#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/SegmentedBar#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "24834": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/SegmentedBar#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/SegmentedBar#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24836": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/SegmentedBar#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/SegmentedBar#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24840": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/SegmentedBar#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24842": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/SegmentedBar#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/SegmentedBar#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24844": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/SegmentedBar#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/SegmentedBar#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24847": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/SegmentedBar#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/SegmentedBar#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24850": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/SegmentedBar#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/SegmentedBar#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "24856": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/SegmentedBar#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/SegmentedBar#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24858": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/SegmentedBar#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/SegmentedBar#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24860": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/SegmentedBar#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24863": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/SegmentedBar#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/SegmentedBar#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24866": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/SegmentedBar#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/SegmentedBar#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24870": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/SegmentedBar#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/SegmentedBar#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24873": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/SegmentedBar#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24877": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/SegmentedBar#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24881": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/SegmentedBar#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24884": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/SegmentedBar#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/SegmentedBar#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "24886": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/SegmentedBar#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24889": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/SegmentedBar#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24892": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/SegmentedBar#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/SegmentedBar#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24895": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/SegmentedBar#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "24897": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/SegmentedBar#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24899": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/SegmentedBar#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24901": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/SegmentedBar#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24906": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/SegmentedBar#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24909": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/SegmentedBar#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/SegmentedBar#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24912": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/SegmentedBar#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/SegmentedBar#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24915": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/SegmentedBar#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/SegmentedBar#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "24918": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/SegmentedBar#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/SegmentedBar#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24922": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/SegmentedBar#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/SegmentedBar#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24925": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/SegmentedBar#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/SegmentedBar#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24929": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/SegmentedBar#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24932": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/SegmentedBar#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/SegmentedBar#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24935": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/SegmentedBar#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24937": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/SegmentedBar#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/SegmentedBar#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "24941": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/SegmentedBar#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/SegmentedBar#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24944": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/SegmentedBar#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/SegmentedBar#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24946": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/SegmentedBar#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/SegmentedBar#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "24949": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/SegmentedBar#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/SegmentedBar#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "24952": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/SegmentedBar#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/SegmentedBar#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24956": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/SegmentedBar#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBar#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24964": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/SegmentedBar#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/SegmentedBar#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24968": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/SegmentedBar#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/SegmentedBar#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24973": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/SegmentedBar#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/SegmentedBar#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "24976": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/SegmentedBar#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/SegmentedBar#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "24981": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/SegmentedBar#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/SegmentedBar#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/SegmentedBar.md b/content/api/class/SegmentedBar.md
deleted file mode 100644
index 766a1f94..00000000
--- a/content/api/class/SegmentedBar.md
+++ /dev/null
@@ -1,150 +0,0 @@
----
-title: SegmentedBar
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'SegmentedBar'
-layout: api
-seo:
- description: "Represents a UI SegmentedBar component."
----
-
-
-
-
-
-
-loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#loadedevent"
- }
- ]
- },
- "24986": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#unloadedevent"
- }
- ]
- },
- "24987": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#createdevent"
- }
- ]
- },
- "24988": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#disposenativeviewevent"
- }
- ]
- },
- "24989": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#propertychangeevent"
- }
- ]
- },
- "24990": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "24998": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25006": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25014": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25022": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25030": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/SegmentedBarItem#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SegmentedBarItem(): SegmentedBarItem",
- "url": "/api/class/SegmentedBarItem#constructor-new-segmentedbaritem",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "SegmentedBarItem"
- }
- ]
- },
- "25032": {
- "name": "title",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#title",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the title of the SegmentedBarItem."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "title: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/segmented-bar/index.d.ts",
- "line": 15,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the title of the SegmentedBarItem."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#title"
- }
- ]
- },
- "25033": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#domnode"
- }
- ]
- },
- "25034": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#recyclenativeview"
- }
- ]
- },
- "25035": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#viewcontroller"
- }
- ]
- },
- "25036": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#bindingcontext"
- }
- ]
- },
- "25037": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#nativeviewprotected"
- }
- ]
- },
- "25038": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#parent"
- }
- ]
- },
- "25039": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#iscollapsed"
- }
- ]
- },
- "25040": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#id"
- }
- ]
- },
- "25041": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#classname"
- }
- ]
- },
- "25042": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#sharedtransitiontag"
- }
- ]
- },
- "25043": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#sharedtransitionignore"
- }
- ]
- },
- "25044": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#domid"
- }
- ]
- },
- "25045": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#context"
- }
- ]
- },
- "25046": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#isaddedtonativevisualtree"
- }
- ]
- },
- "25047": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#cssstate"
- }
- ]
- },
- "25048": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#stylescope"
- }
- ]
- },
- "25053": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#suspendnativeupdatescount"
- }
- ]
- },
- "25054": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#isstylescopehost"
- }
- ]
- },
- "25055": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "25056": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#left"
- }
- ]
- },
- "25057": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#top"
- }
- ]
- },
- "25058": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveleft"
- }
- ]
- },
- "25059": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivetop"
- }
- ]
- },
- "25060": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#dock"
- }
- ]
- },
- "25061": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#row"
- }
- ]
- },
- "25062": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#col"
- }
- ]
- },
- "25063": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#column"
- }
- ]
- },
- "25064": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#rowspan"
- }
- ]
- },
- "25065": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#colspan"
- }
- ]
- },
- "25066": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#columnspan"
- }
- ]
- },
- "25067": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#order"
- }
- ]
- },
- "25068": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#flexgrow"
- }
- ]
- },
- "25069": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#flexshrink"
- }
- ]
- },
- "25070": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#flexwrapbefore"
- }
- ]
- },
- "25071": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#alignself"
- }
- ]
- },
- "25072": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#oldleft"
- }
- ]
- },
- "25073": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#oldtop"
- }
- ]
- },
- "25074": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#oldright"
- }
- ]
- },
- "25075": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#oldbottom"
- }
- ]
- },
- "25076": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#ignoreflexminwidthheightreset"
- }
- ]
- },
- "25077": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveminwidth"
- }
- ]
- },
- "25078": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveminheight"
- }
- ]
- },
- "25079": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivewidth"
- }
- ]
- },
- "25080": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveheight"
- }
- ]
- },
- "25081": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivemargintop"
- }
- ]
- },
- "25082": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivemarginright"
- }
- ]
- },
- "25083": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivemarginbottom"
- }
- ]
- },
- "25084": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivemarginleft"
- }
- ]
- },
- "25085": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivepaddingtop"
- }
- ]
- },
- "25086": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivepaddingright"
- }
- ]
- },
- "25087": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivepaddingbottom"
- }
- ]
- },
- "25088": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivepaddingleft"
- }
- ]
- },
- "25089": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectivebordertopwidth"
- }
- ]
- },
- "25090": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveborderrightwidth"
- }
- ]
- },
- "25091": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveborderbottomwidth"
- }
- ]
- },
- "25092": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#effectiveborderleftwidth"
- }
- ]
- },
- "25093": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#defaultpaddingtop"
- }
- ]
- },
- "25094": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#defaultpaddingright"
- }
- ]
- },
- "25095": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#defaultpaddingbottom"
- }
- ]
- },
- "25096": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#defaultpaddingleft"
- }
- ]
- },
- "25097": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#ispaddingrelative"
- }
- ]
- },
- "25099": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/SegmentedBarItem#reusable"
- }
- ]
- },
- "25100": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/SegmentedBarItem#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "25104": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/SegmentedBarItem#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "25108": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/SegmentedBarItem#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25110": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/SegmentedBarItem#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "25114": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#android",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/SegmentedBarItem#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 280,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "25116": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#ios",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/SegmentedBarItem#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 281,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "25118": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/SegmentedBarItem#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25120": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/SegmentedBarItem#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25124": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/SegmentedBarItem#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "25128": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/SegmentedBarItem#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "25132": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/SegmentedBarItem#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/SegmentedBarItem#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "25134": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/SegmentedBarItem#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25136": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/SegmentedBarItem#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25140": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/SegmentedBarItem#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25142": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/SegmentedBarItem#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25144": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/SegmentedBarItem#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25146": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/SegmentedBarItem#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25149": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/SegmentedBarItem#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25152": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/SegmentedBarItem#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "25158": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/SegmentedBarItem#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25160": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/SegmentedBarItem#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25162": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#cssclasses"
- }
- ]
- },
- "25163": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/SegmentedBarItem#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/SegmentedBarItem#csspseudoclasses"
- }
- ]
- },
- "25164": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/SegmentedBarItem#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25167": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/SegmentedBarItem#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25170": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/SegmentedBarItem#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25174": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/SegmentedBarItem#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25177": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/SegmentedBarItem#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25179": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/SegmentedBarItem#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25185": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/SegmentedBarItem#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25189": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/SegmentedBarItem#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25193": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/SegmentedBarItem#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25196": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/SegmentedBarItem#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25198": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/SegmentedBarItem#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25201": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/SegmentedBarItem#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25204": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/SegmentedBarItem#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25207": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/SegmentedBarItem#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "25209": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/SegmentedBarItem#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25211": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/SegmentedBarItem#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25213": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/SegmentedBarItem#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25215": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/SegmentedBarItem#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25218": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/SegmentedBarItem#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25223": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/SegmentedBarItem#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25226": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/SegmentedBarItem#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25229": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/SegmentedBarItem#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25232": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/SegmentedBarItem#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "25235": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/SegmentedBarItem#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "25239": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/SegmentedBarItem#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25242": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/SegmentedBarItem#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25245": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/SegmentedBarItem#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "25249": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/SegmentedBarItem#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25252": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/SegmentedBarItem#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25255": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/SegmentedBarItem#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25257": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/SegmentedBarItem#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25261": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/SegmentedBarItem#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25264": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/SegmentedBarItem#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/SegmentedBarItem#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "25271": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/SegmentedBarItem#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25274": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/SegmentedBarItem#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25276": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/SegmentedBarItem#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25279": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/SegmentedBarItem#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "25282": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/SegmentedBarItem#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25286": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25294": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25302": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25310": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25318": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/SegmentedBarItem#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25326": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/SegmentedBarItem#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25330": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/SegmentedBarItem#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25335": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/SegmentedBarItem#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "25338": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/SegmentedBarItem#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "25343": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/SegmentedBarItem#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/SegmentedBarItem#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/SegmentedBarItem.md b/content/api/class/SegmentedBarItem.md
deleted file mode 100644
index 4ea88b6d..00000000
--- a/content/api/class/SegmentedBarItem.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-title: SegmentedBarItem
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'SegmentedBarItem'
-layout: api
-seo:
- description: "Represents a SegmentedBar item."
----
-
-
-
-
-
-
-inProgress: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 175,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Whether a transition is in progress or not.\nNote: used internally however exposed in case custom state ordering is needed.\nUpdated when transitions start/end/cancel."
- }
- ]
- },
- "url": "/api/class/SharedTransition#inprogress"
- }
- ]
- },
- "32674": {
- "name": "events",
- "type": "Method",
- "url": "/api/class/SharedTransition#events",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "events(): SharedTransitionObservable",
- "url": "/api/class/SharedTransition#events-events-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 180,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Listen to various shared element transition events."
- }
- ],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "Observable"
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "SharedTransitionObservable"
- }
- ]
- },
- "32676": {
- "name": "startedEvent",
- "type": "Property",
- "url": "/api/class/SharedTransition#startedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the transition starts."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "startedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 184,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the transition starts."
- }
- ]
- },
- "url": "/api/class/SharedTransition#startedevent"
- }
- ]
- },
- "32677": {
- "name": "finishedEvent",
- "type": "Property",
- "url": "/api/class/SharedTransition#finishedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the transition finishes."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "finishedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 188,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the transition finishes."
- }
- ]
- },
- "url": "/api/class/SharedTransition#finishedevent"
- }
- ]
- },
- "32678": {
- "name": "interactiveCancelledEvent",
- "type": "Property",
- "url": "/api/class/SharedTransition#interactivecancelledevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the interactive transition cancels."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "interactiveCancelledEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 192,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the interactive transition cancels."
- }
- ]
- },
- "url": "/api/class/SharedTransition#interactivecancelledevent"
- }
- ]
- },
- "32679": {
- "name": "interactiveUpdateEvent",
- "type": "Property",
- "url": "/api/class/SharedTransition#interactiveupdateevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the interactive transition updates with the percent value."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "interactiveUpdateEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 196,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When the interactive transition updates with the percent value."
- }
- ]
- },
- "url": "/api/class/SharedTransition#interactiveupdateevent"
- }
- ]
- },
- "32680": {
- "name": "notifyEvent",
- "type": "Method",
- "url": "/api/class/SharedTransition#notifyevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyEvent(eventName: string, data: SharedTransitionEventDataPayload): void",
- "url": "/api/class/SharedTransition#notifyevent-notifyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 204,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify a Shared Transition event."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shared Transition event name"
- }
- ]
- }
- },
- {
- "name": "data",
- "type": "SharedTransitionEventDataPayload",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32684": {
- "name": "DEBUG",
- "type": "Property",
- "url": "/api/class/SharedTransition#debug",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enable to see various console logging output of Shared Element Transition behavior."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "DEBUG: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 208,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enable to see various console logging output of Shared Element Transition behavior."
- }
- ]
- },
- "url": "/api/class/SharedTransition#debug"
- }
- ]
- },
- "32685": {
- "name": "updateState",
- "type": "Method",
- "url": "/api/class/SharedTransition#updatestate",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "updateState(id: number, state: SharedTransitionState): void",
- "url": "/api/class/SharedTransition#updatestate-updatestate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Update transition state."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Transition instance id"
- }
- ]
- }
- },
- {
- "name": "state",
- "type": "SharedTransitionState",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "SharedTransitionState"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32689": {
- "name": "getState",
- "type": "Method",
- "url": "/api/class/SharedTransition#getstate",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getState(id: number): SharedTransitionState",
- "url": "/api/class/SharedTransition#getstate-getstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Get current state for any transition."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Transition instance id"
- }
- ]
- }
- }
- ],
- "returns": "SharedTransitionState"
- }
- ]
- },
- "32692": {
- "name": "finishState",
- "type": "Method",
- "url": "/api/class/SharedTransition#finishstate",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "finishState(id: number): void",
- "url": "/api/class/SharedTransition#finishstate-finishstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Finish transition state."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Transition instance id"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32695": {
- "name": "getSharedElements",
- "type": "Method",
- "url": "/api/class/SharedTransition#getsharedelements",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSharedElements(fromPage: ViewBase, toPage: ViewBase): {\npresented: View[];\npresenting: View[];\n}",
- "url": "/api/class/SharedTransition#getsharedelements-getsharedelements-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gather view collections based on sharedTransitionTag details."
- }
- ],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "Collections of views pertaining to shared elements or particular pages"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "fromPage",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Page moving away from"
- }
- ]
- }
- },
- {
- "name": "toPage",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Page moving to"
- }
- ]
- }
- }
- ],
- "returns": "{\npresented: View[];\npresenting: View[];\n}"
- }
- ]
- },
- "32703": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/SharedTransition#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SharedTransition(): SharedTransition",
- "url": "/api/class/SharedTransition#constructor-new-sharedtransition",
- "parameters": [],
- "returns": "SharedTransition"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/SharedTransition.md b/content/api/class/SharedTransition.md
deleted file mode 100644
index 99a19b22..00000000
--- a/content/api/class/SharedTransition.md
+++ /dev/null
@@ -1,234 +0,0 @@
----
-title: SharedTransition
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'SharedTransition'
-layout: api
-seo:
- description: "Shared Element Transitions (preview)\nAllows you to auto animate between shared elements on two different screesn to create smooth navigational experiences.\nView components can define sharedTransitionTag=\"name\" alone with a transition through this API."
----
-
-
-
-
-
-
-animate(\n state: SharedTransitionState,\n transitionContext: any,\n type: TransitionNavigationType\n): void",
- "url": "/api/class/SharedTransitionHelper#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition-helper.d.ts",
- "line": 9,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "state",
- "type": "SharedTransitionState",
- "flags": {}
- },
- {
- "name": "transitionContext",
- "type": "any",
- "flags": {}
- },
- {
- "name": "type",
- "type": "TransitionNavigationType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32714": {
- "name": "interactiveStart",
- "type": "Method",
- "url": "/api/class/SharedTransitionHelper#interactivestart",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "interactiveStart(\n state: SharedTransitionState,\n interactiveState: TransitionInteractiveState,\n type: TransitionNavigationType\n): void",
- "url": "/api/class/SharedTransitionHelper#interactivestart-interactivestart-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition-helper.d.ts",
- "line": 10,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "state",
- "type": "SharedTransitionState",
- "flags": {}
- },
- {
- "name": "interactiveState",
- "type": "TransitionInteractiveState",
- "flags": {}
- },
- {
- "name": "type",
- "type": "TransitionNavigationType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32719": {
- "name": "interactiveUpdate",
- "type": "Method",
- "url": "/api/class/SharedTransitionHelper#interactiveupdate",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "interactiveUpdate(\n state: SharedTransitionState,\n interactiveState: TransitionInteractiveState,\n type: TransitionNavigationType,\n percent: number\n): void",
- "url": "/api/class/SharedTransitionHelper#interactiveupdate-interactiveupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition-helper.d.ts",
- "line": 11,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "state",
- "type": "SharedTransitionState",
- "flags": {}
- },
- {
- "name": "interactiveState",
- "type": "TransitionInteractiveState",
- "flags": {}
- },
- {
- "name": "type",
- "type": "TransitionNavigationType",
- "flags": {}
- },
- {
- "name": "percent",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32725": {
- "name": "interactiveCancel",
- "type": "Method",
- "url": "/api/class/SharedTransitionHelper#interactivecancel",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "interactiveCancel(\n state: SharedTransitionState,\n interactiveState: TransitionInteractiveState,\n type: TransitionNavigationType\n): void",
- "url": "/api/class/SharedTransitionHelper#interactivecancel-interactivecancel-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition-helper.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "state",
- "type": "SharedTransitionState",
- "flags": {}
- },
- {
- "name": "interactiveState",
- "type": "TransitionInteractiveState",
- "flags": {}
- },
- {
- "name": "type",
- "type": "TransitionNavigationType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32730": {
- "name": "interactiveFinish",
- "type": "Method",
- "url": "/api/class/SharedTransitionHelper#interactivefinish",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "interactiveFinish(\n state: SharedTransitionState,\n interactiveState: TransitionInteractiveState,\n type: TransitionNavigationType\n): void",
- "url": "/api/class/SharedTransitionHelper#interactivefinish-interactivefinish-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/shared-transition-helper.d.ts",
- "line": 13,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "state",
- "type": "SharedTransitionState",
- "flags": {}
- },
- {
- "name": "interactiveState",
- "type": "TransitionInteractiveState",
- "flags": {}
- },
- {
- "name": "type",
- "type": "TransitionNavigationType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32735": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/SharedTransitionHelper#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SharedTransitionHelper(): SharedTransitionHelper",
- "url": "/api/class/SharedTransitionHelper#constructor-new-sharedtransitionhelper",
- "parameters": [],
- "returns": "SharedTransitionHelper"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/SharedTransitionHelper.md b/content/api/class/SharedTransitionHelper.md
deleted file mode 100644
index a67af62a..00000000
--- a/content/api/class/SharedTransitionHelper.md
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: SharedTransitionHelper
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'SharedTransitionHelper'
-layout: api
-seo:
- description: "Platform helper to aid in creating your own custom Shared Element Transition classes.\n(iOS Only)"
----
-
-
-
-
-
-
-key: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 123,
- "character": 13
- }
- ],
- "url": "/api/class/ShorthandProperty#key"
- }
- ]
- },
- "12075": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#name",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 124,
- "character": 13
- }
- ],
- "url": "/api/class/ShorthandProperty#name"
- }
- ]
- },
- "12076": {
- "name": "cssName",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#cssname",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 125,
- "character": 13
- }
- ],
- "url": "/api/class/ShorthandProperty#cssname"
- }
- ]
- },
- "12077": {
- "name": "cssLocalName",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#csslocalname",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssLocalName: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 126,
- "character": 13
- }
- ],
- "url": "/api/class/ShorthandProperty#csslocalname"
- }
- ]
- },
- "12078": {
- "name": "cssValueDescriptor",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#cssvaluedescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "cssValueDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 127,
- "character": 23
- }
- ],
- "url": "/api/class/ShorthandProperty#cssvaluedescriptor"
- }
- ]
- },
- "12079": {
- "name": "localValueDescriptor",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#localvaluedescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "localValueDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 128,
- "character": 23
- }
- ],
- "url": "/api/class/ShorthandProperty#localvaluedescriptor"
- }
- ]
- },
- "12080": {
- "name": "propertyBagDescriptor",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#propertybagdescriptor",
- "flags": {
- "isProtected": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "propertyBagDescriptor: PropertyDescriptor",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 129,
- "character": 23
- }
- ],
- "url": "/api/class/ShorthandProperty#propertybagdescriptor"
- }
- ]
- },
- "12081": {
- "name": "sourceKey",
- "type": "Property",
- "url": "/api/class/ShorthandProperty#sourcekey",
- "flags": {
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "sourceKey: symbol",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 130,
- "character": 13
- }
- ],
- "url": "/api/class/ShorthandProperty#sourcekey"
- }
- ]
- },
- "12082": {
- "name": "register",
- "type": "Method",
- "url": "/api/class/ShorthandProperty#register",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "register(cls: typeof Style): void",
- "url": "/api/class/ShorthandProperty#register-register-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/properties/index.d.ts",
- "line": 132,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cls",
- "type": "typeof Style",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ShorthandProperty.md b/content/api/class/ShorthandProperty.md
deleted file mode 100644
index 6456f5d0..00000000
--- a/content/api/class/ShorthandProperty.md
+++ /dev/null
@@ -1,176 +0,0 @@
----
-title: ShorthandProperty
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ShorthandProperty'
-layout: api
-seo:
- description: ShorthandProperty
----
-
-
-
-
-
-
-AndroidTransitionType?: {\n enter?: string\n exit?: string\n popEnter?: string\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "name": "AndroidTransitionType",
- "url": "/api/class/Transition#androidtransitiontype",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#androidtransitiontype"
- }
- ]
- },
- "32601": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/SlideTransition#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SlideTransition(direction: string, duration?: number, nativeCurve?: any): SlideTransition",
- "url": "/api/class/SlideTransition#constructor-new-slidetransition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/slide-transition.d.ts",
- "line": 4,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "direction",
- "type": "string",
- "flags": {}
- },
- {
- "name": "duration",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "nativeCurve",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "SlideTransition"
- }
- ]
- },
- "32606": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/SlideTransition#id",
- "flags": {},
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "id: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "id",
- "url": "/api/class/Transition#id",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#id"
- }
- ]
- },
- "32607": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/SlideTransition#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "name?: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "name",
- "url": "/api/class/Transition#name",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "url": "/api/class/SlideTransition#name"
- }
- ]
- },
- "32608": {
- "name": "transitionController",
- "type": "Property",
- "url": "/api/class/SlideTransition#transitioncontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "transitionController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "transitionController",
- "url": "/api/class/Transition#transitioncontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#transitioncontroller"
- }
- ]
- },
- "32609": {
- "name": "interactiveController",
- "type": "Property",
- "url": "/api/class/SlideTransition#interactivecontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "interactiveController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "interactiveController",
- "url": "/api/class/Transition#interactivecontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#interactivecontroller"
- }
- ]
- },
- "32610": {
- "name": "presented",
- "type": "Property",
- "url": "/api/class/SlideTransition#presented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presented?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presented",
- "url": "/api/class/Transition#presented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#presented"
- }
- ]
- },
- "32611": {
- "name": "presenting",
- "type": "Property",
- "url": "/api/class/SlideTransition#presenting",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "presenting?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "presenting",
- "url": "/api/class/Transition#presenting",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#presenting"
- }
- ]
- },
- "32612": {
- "name": "sharedElements",
- "type": "Property",
- "url": "/api/class/SlideTransition#sharedelements",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "code": "sharedElements?: {\n independent?: (SharedElementSettings & {})[]\n presented?: SharedElementSettings[]\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 32,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "sharedElements",
- "url": "/api/class/Transition#sharedelements",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "url": "/api/class/SlideTransition#sharedelements"
- }
- ]
- },
- "32619": {
- "name": "getDuration",
- "type": "Method",
- "url": "/api/class/SlideTransition#getduration",
- "flags": {},
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getDuration(): number",
- "url": "/api/class/SlideTransition#getduration-getduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getDuration",
- "url": "/api/class/Transition#getduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32621": {
- "name": "setDuration",
- "type": "Method",
- "url": "/api/class/SlideTransition#setduration",
- "flags": {},
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setDuration(value: number): void",
- "url": "/api/class/SlideTransition#setduration-setduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setDuration",
- "url": "/api/class/Transition#setduration",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32624": {
- "name": "getCurve",
- "type": "Method",
- "url": "/api/class/SlideTransition#getcurve",
- "flags": {},
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCurve(): any",
- "url": "/api/class/SlideTransition#getcurve-getcurve-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 42,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "getCurve",
- "url": "/api/class/Transition#getcurve",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32626": {
- "name": "animateIOSTransition",
- "type": "Method",
- "url": "/api/class/SlideTransition#animateiostransition",
- "flags": {},
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animateIOSTransition(\n transitionContext: any,\n fromViewCtrl: any,\n toViewCtrl: any,\n operation: any\n): void",
- "url": "/api/class/SlideTransition#animateiostransition-animateiostransition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "animateIOSTransition",
- "url": "/api/class/Transition#animateiostransition",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionContext",
- "type": "any",
- "flags": {}
- },
- {
- "name": "fromViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32632": {
- "name": "createAndroidAnimator",
- "type": "Method",
- "url": "/api/class/SlideTransition#createandroidanimator",
- "flags": {},
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAndroidAnimator(transitionType: string): any",
- "url": "/api/class/SlideTransition#createandroidanimator-createandroidanimator-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "createAndroidAnimator",
- "url": "/api/class/Transition#createandroidanimator",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "transitionType",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32635": {
- "name": "setupInteractiveGesture",
- "type": "Method",
- "url": "/api/class/SlideTransition#setupinteractivegesture",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setupInteractiveGesture(startCallback: () => void, view: View): void",
- "url": "/api/class/SlideTransition#setupinteractivegesture-setupinteractivegesture-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "setupInteractiveGesture",
- "url": "/api/class/Transition#setupinteractivegesture",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "startCallback",
- "type": "() => void",
- "flags": {}
- },
- {
- "name": "view",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32641": {
- "name": "iosDismissedController",
- "type": "Method",
- "url": "/api/class/SlideTransition#iosdismissedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosDismissedController(dismissed: any): any",
- "url": "/api/class/SlideTransition#iosdismissedcontroller-iosdismissedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosDismissedController",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "dismissed",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32644": {
- "name": "iosPresentedController",
- "type": "Method",
- "url": "/api/class/SlideTransition#iospresentedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosPresentedController(presented: any, presenting: any, source: any): any",
- "url": "/api/class/SlideTransition#iospresentedcontroller-iospresentedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosPresentedController",
- "url": "/api/class/Transition#iospresentedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "presented",
- "type": "any",
- "flags": {}
- },
- {
- "name": "presenting",
- "type": "any",
- "flags": {}
- },
- {
- "name": "source",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32649": {
- "name": "iosInteractionDismiss",
- "type": "Method",
- "url": "/api/class/SlideTransition#iosinteractiondismiss",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionDismiss(animator: any): any",
- "url": "/api/class/SlideTransition#iosinteractiondismiss-iosinteractiondismiss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionDismiss",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32652": {
- "name": "iosInteractionPresented",
- "type": "Method",
- "url": "/api/class/SlideTransition#iosinteractionpresented",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionPresented(animator: any): any",
- "url": "/api/class/SlideTransition#iosinteractionpresented-iosinteractionpresented-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosInteractionPresented",
- "url": "/api/class/Transition#iosinteractionpresented",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32655": {
- "name": "iosNavigatedController",
- "type": "Method",
- "url": "/api/class/SlideTransition#iosnavigatedcontroller",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosNavigatedController(\n navigationController: any,\n operation: number,\n fromVC: any,\n toVC: any\n): any",
- "url": "/api/class/SlideTransition#iosnavigatedcontroller-iosnavigatedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "iosNavigatedController",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "navigationController",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "number",
- "flags": {}
- },
- {
- "name": "fromVC",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toVC",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32661": {
- "name": "androidFragmentTransactionCallback",
- "type": "Method",
- "url": "/api/class/SlideTransition#androidfragmenttransactioncallback",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "androidFragmentTransactionCallback(fragmentTransaction: any, currentEntry: BackstackEntry, newEntry: BackstackEntry): void",
- "url": "/api/class/SlideTransition#androidfragmenttransactioncallback-androidfragmenttransactioncallback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "name": "androidFragmentTransactionCallback",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "fromName": "Transition",
- "fromUrl": "/api/class/Transition"
- },
- "parameters": [
- {
- "name": "fragmentTransaction",
- "type": "any",
- "flags": {}
- },
- {
- "name": "currentEntry",
- "type": "BackstackEntry",
- "flags": {}
- },
- {
- "name": "newEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/SlideTransition.md b/content/api/class/SlideTransition.md
deleted file mode 100644
index bdba37ee..00000000
--- a/content/api/class/SlideTransition.md
+++ /dev/null
@@ -1,46 +0,0 @@
----
-title: SlideTransition
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'SlideTransition'
-layout: api
-seo:
- description: SlideTransition
----
-
-
-
-
-
-
-accessibilityDecrementEvent: "accessibilityDecrement" = 'accessibilityDecrement'",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 10,
- "character": 17
- }
- ],
- "url": "/api/class/Slider#accessibilitydecrementevent"
- }
- ]
- },
- "25348": {
- "name": "accessibilityIncrementEvent",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityincrementevent",
- "flags": {
- "isStatic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "accessibilityIncrementEvent: "accessibilityIncrement" = 'accessibilityIncrement'",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 11,
- "character": 17
- }
- ],
- "url": "/api/class/Slider#accessibilityincrementevent"
- }
- ]
- },
- "25349": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Slider#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Slider#layoutchangedevent"
- }
- ]
- },
- "25350": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Slider#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Slider#showingmodallyevent"
- }
- ]
- },
- "25351": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Slider#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Slider#shownmodallyevent"
- }
- ]
- },
- "25352": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityblurevent"
- }
- ]
- },
- "25353": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityfocusevent"
- }
- ]
- },
- "25354": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityfocuschangedevent"
- }
- ]
- },
- "25355": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Slider#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Slider#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "25364": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Slider#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Slider#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25372": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Slider#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Slider#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "25378": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Slider#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Slider#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "25382": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#accessibilityperformescapeevent"
- }
- ]
- },
- "25383": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Slider#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Slider#loadedevent"
- }
- ]
- },
- "25384": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Slider#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Slider#unloadedevent"
- }
- ]
- },
- "25385": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Slider#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Slider#createdevent"
- }
- ]
- },
- "25386": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Slider#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Slider#disposenativeviewevent"
- }
- ]
- },
- "25387": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Slider#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Slider#propertychangeevent"
- }
- ]
- },
- "25388": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Slider#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25396": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Slider#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25404": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Slider#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25412": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Slider#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25420": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Slider#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25428": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Slider#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Slider(): Slider",
- "url": "/api/class/Slider#constructor-new-slider",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "Slider"
- }
- ]
- },
- "25430": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Slider#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/SeekBar.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/SeekBar.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/Slider#android"
- }
- ]
- },
- "25431": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Slider#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UISlider](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISlider_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UISlider](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISlider_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/Slider#ios"
- }
- ]
- },
- "25432": {
- "name": "value",
- "type": "Property",
- "url": "/api/class/Slider#value",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a slider current value. The default value is 0."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "value: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a slider current value. The default value is 0."
- }
- ]
- },
- "url": "/api/class/Slider#value"
- }
- ]
- },
- "25433": {
- "name": "minValue",
- "type": "Property",
- "url": "/api/class/Slider#minvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a slider min value. The default value is 0."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minValue: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a slider min value. The default value is 0."
- }
- ]
- },
- "url": "/api/class/Slider#minvalue"
- }
- ]
- },
- "25434": {
- "name": "maxValue",
- "type": "Property",
- "url": "/api/class/Slider#maxvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a slider max value. The default value is 100."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxValue: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 36,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a slider max value. The default value is 100."
- }
- ]
- },
- "url": "/api/class/Slider#maxvalue"
- }
- ]
- },
- "25435": {
- "name": "accessibilityStep",
- "type": "Property",
- "url": "/api/class/Slider#accessibilitystep",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Increase/Decrease step size for iOS Increment-/Decrement events"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityStep: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/slider/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Increase/Decrease step size for iOS Increment-/Decrement events"
- }
- ]
- },
- "url": "/api/class/Slider#accessibilitystep"
- }
- ]
- },
- "25436": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Slider#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Slider#bindingcontext"
- }
- ]
- },
- "25437": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Slider#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#bordercolor"
- }
- ]
- },
- "25438": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Slider#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#bordertopcolor"
- }
- ]
- },
- "25439": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Slider#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderrightcolor"
- }
- ]
- },
- "25440": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Slider#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderbottomcolor"
- }
- ]
- },
- "25441": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Slider#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderleftcolor"
- }
- ]
- },
- "25442": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Slider#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderwidth"
- }
- ]
- },
- "25443": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Slider#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Slider#bordertopwidth"
- }
- ]
- },
- "25444": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Slider#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderrightwidth"
- }
- ]
- },
- "25445": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Slider#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderbottomwidth"
- }
- ]
- },
- "25446": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Slider#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderleftwidth"
- }
- ]
- },
- "25447": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Slider#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderradius"
- }
- ]
- },
- "25448": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Slider#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Slider#bordertopleftradius"
- }
- ]
- },
- "25449": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Slider#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Slider#bordertoprightradius"
- }
- ]
- },
- "25450": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Slider#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderbottomrightradius"
- }
- ]
- },
- "25451": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Slider#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Slider#borderbottomleftradius"
- }
- ]
- },
- "25452": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Slider#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#color"
- }
- ]
- },
- "25453": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Slider#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Slider#accessible"
- }
- ]
- },
- "25454": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityhidden"
- }
- ]
- },
- "25455": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityidentifier"
- }
- ]
- },
- "25456": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityrole"
- }
- ]
- },
- "25457": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Slider#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Slider#accessibilitystate"
- }
- ]
- },
- "25458": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Slider#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilitylabel"
- }
- ]
- },
- "25459": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityvalue"
- }
- ]
- },
- "25460": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Slider#accessibilityhint"
- }
- ]
- },
- "25461": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Slider#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#accessibilityliveregion"
- }
- ]
- },
- "25462": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Slider#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Slider#accessibilitylanguage"
- }
- ]
- },
- "25463": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Slider#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Slider#accessibilitymediasession"
- }
- ]
- },
- "25464": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Slider#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Slider#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "25465": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Slider#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Slider#iosaccessibilityminfontscale"
- }
- ]
- },
- "25466": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Slider#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Slider#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "25467": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Slider#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Slider#androidcontentdescriptionupdated"
- }
- ]
- },
- "25468": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Slider#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#automationtext"
- }
- ]
- },
- "25469": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Slider#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Slider#androidelevation"
- }
- ]
- },
- "25470": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Slider#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Slider#androiddynamicelevationoffset"
- }
- ]
- },
- "25471": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Slider#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Slider#background"
- }
- ]
- },
- "25472": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Slider#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Slider#backgroundcolor"
- }
- ]
- },
- "25473": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Slider#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Slider#backgroundimage"
- }
- ]
- },
- "25474": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Slider#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Slider#boxshadow"
- }
- ]
- },
- "25475": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Slider#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Slider#minwidth"
- }
- ]
- },
- "25476": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Slider#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Slider#minheight"
- }
- ]
- },
- "25477": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Slider#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Slider#width"
- }
- ]
- },
- "25478": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Slider#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Slider#height"
- }
- ]
- },
- "25479": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Slider#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Slider#margin"
- }
- ]
- },
- "25480": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Slider#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Slider#marginleft"
- }
- ]
- },
- "25481": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Slider#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Slider#margintop"
- }
- ]
- },
- "25482": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Slider#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Slider#marginright"
- }
- ]
- },
- "25483": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Slider#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Slider#marginbottom"
- }
- ]
- },
- "25484": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Slider#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Slider#horizontalalignment"
- }
- ]
- },
- "25485": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Slider#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Slider#verticalalignment"
- }
- ]
- },
- "25486": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Slider#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Slider#visibility"
- }
- ]
- },
- "25487": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Slider#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Slider#opacity"
- }
- ]
- },
- "25488": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Slider#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Slider#rotate"
- }
- ]
- },
- "25489": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Slider#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Slider#rotatex"
- }
- ]
- },
- "25490": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Slider#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Slider#rotatey"
- }
- ]
- },
- "25491": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Slider#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Slider#perspective"
- }
- ]
- },
- "25492": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Slider#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Slider#translatex"
- }
- ]
- },
- "25493": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Slider#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Slider#translatey"
- }
- ]
- },
- "25494": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Slider#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Slider#scalex"
- }
- ]
- },
- "25495": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Slider#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Slider#scaley"
- }
- ]
- },
- "25496": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Slider#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Slider#originx"
- }
- ]
- },
- "25497": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Slider#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Slider#originy"
- }
- ]
- },
- "25498": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Slider#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Slider#isenabled"
- }
- ]
- },
- "25499": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Slider#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Slider#isuserinteractionenabled"
- }
- ]
- },
- "25500": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Slider#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Slider#iosoverflowsafearea"
- }
- ]
- },
- "25501": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Slider#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Slider#iosoverflowsafeareaenabled"
- }
- ]
- },
- "25502": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Slider#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Slider#iosignoresafearea"
- }
- ]
- },
- "25503": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Slider#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Slider#islayoutvalid"
- }
- ]
- },
- "25504": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Slider#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Slider#csstype"
- }
- ]
- },
- "25505": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Slider#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#cssclasses"
- }
- ]
- },
- "25506": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Slider#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#csspseudoclasses"
- }
- ]
- },
- "25507": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Slider#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Slider#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25511": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Slider#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Slider#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25518": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Slider#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Slider#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "25520": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Slider#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Slider#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "25522": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Slider#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Slider#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "25524": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Slider#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Slider#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25528": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Slider#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Slider#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25534": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Slider#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Slider#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25538": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Slider#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Slider#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25544": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Slider#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Slider#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25546": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Slider#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Slider#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "25549": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Slider#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Slider#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "25557": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Slider#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Slider#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Slider#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Slider#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Slider#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/Slider#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "25600": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Slider#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Slider#modal"
- }
- ]
- },
- "25601": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Slider#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Slider#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "25604": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Slider#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Slider#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "25607": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Slider#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Slider#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "25614": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Slider#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Slider#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "25616": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Slider#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Slider#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "25618": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Slider#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Slider#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "25621": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Slider#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Slider#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "25623": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Slider#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Slider#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25635": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Slider#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Slider#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "25637": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Slider#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Slider#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25639": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Slider#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Slider#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "25641": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Slider#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Slider#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25647": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Slider#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Slider#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25649": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Slider#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Slider#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25651": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Slider#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Slider#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25653": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Slider#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Slider#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25659": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Slider#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Slider#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25662": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Slider#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Slider#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25665": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Slider#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Slider#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25734": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Slider#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Slider#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "25740": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Slider#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Slider#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25745": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Slider#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Slider#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25747": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Slider#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Slider#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25749": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Slider#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Slider#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "25752": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Slider#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Slider#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "25755": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Slider#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Slider#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "25759": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Slider#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#testid"
- }
- ]
- },
- "25760": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Slider#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#touchanimation"
- }
- ]
- },
- "25761": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Slider#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#ignoretouchanimation"
- }
- ]
- },
- "25762": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Slider#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#touchdelay"
- }
- ]
- },
- "25763": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Slider#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#closemodalcallback"
- }
- ]
- },
- "25764": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Slider#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Slider#transitionid"
- }
- ]
- },
- "25765": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Slider#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#islayoutvalid"
- }
- ]
- },
- "25766": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Slider#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Slider#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25768": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Slider#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Slider#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25771": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Slider#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25779": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Slider#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25787": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Slider#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25795": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Slider#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Slider#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "25798": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Slider#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Slider#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25801": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Slider#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Slider#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25805": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Slider#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Slider#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25811": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Slider#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Slider#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25813": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Slider#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Slider#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25815": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Slider#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Slider#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25817": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Slider#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Slider#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25821": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Slider#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Slider#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25825": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Slider#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Slider#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "25829": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Slider#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Slider#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "25833": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Slider#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Slider#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25835": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Slider#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Slider#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25841": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Slider#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Slider#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25843": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Slider#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Slider#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25847": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Slider#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#domnode"
- }
- ]
- },
- "25848": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Slider#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#recyclenativeview"
- }
- ]
- },
- "25849": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Slider#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Slider#viewcontroller"
- }
- ]
- },
- "25850": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Slider#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Slider#nativeviewprotected"
- }
- ]
- },
- "25851": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Slider#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Slider#parent"
- }
- ]
- },
- "25852": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Slider#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Slider#iscollapsed"
- }
- ]
- },
- "25853": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Slider#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Slider#id"
- }
- ]
- },
- "25854": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Slider#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Slider#classname"
- }
- ]
- },
- "25855": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Slider#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Slider#sharedtransitiontag"
- }
- ]
- },
- "25856": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Slider#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Slider#sharedtransitionignore"
- }
- ]
- },
- "25857": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Slider#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#domid"
- }
- ]
- },
- "25858": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Slider#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#context"
- }
- ]
- },
- "25859": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Slider#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#isaddedtonativevisualtree"
- }
- ]
- },
- "25860": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Slider#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#cssstate"
- }
- ]
- },
- "25861": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Slider#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#stylescope"
- }
- ]
- },
- "25866": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Slider#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Slider#suspendnativeupdatescount"
- }
- ]
- },
- "25867": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Slider#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#isstylescopehost"
- }
- ]
- },
- "25868": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Slider#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "25869": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Slider#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#left"
- }
- ]
- },
- "25870": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Slider#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#top"
- }
- ]
- },
- "25871": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Slider#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveleft"
- }
- ]
- },
- "25872": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Slider#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivetop"
- }
- ]
- },
- "25873": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Slider#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#dock"
- }
- ]
- },
- "25874": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Slider#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#row"
- }
- ]
- },
- "25875": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Slider#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#col"
- }
- ]
- },
- "25876": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Slider#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#column"
- }
- ]
- },
- "25877": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Slider#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#rowspan"
- }
- ]
- },
- "25878": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Slider#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#colspan"
- }
- ]
- },
- "25879": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Slider#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#columnspan"
- }
- ]
- },
- "25880": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Slider#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#order"
- }
- ]
- },
- "25881": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Slider#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#flexgrow"
- }
- ]
- },
- "25882": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Slider#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#flexshrink"
- }
- ]
- },
- "25883": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Slider#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#flexwrapbefore"
- }
- ]
- },
- "25884": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Slider#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#alignself"
- }
- ]
- },
- "25885": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Slider#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#oldleft"
- }
- ]
- },
- "25886": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Slider#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#oldtop"
- }
- ]
- },
- "25887": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Slider#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#oldright"
- }
- ]
- },
- "25888": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Slider#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#oldbottom"
- }
- ]
- },
- "25889": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Slider#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#ignoreflexminwidthheightreset"
- }
- ]
- },
- "25890": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Slider#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveminwidth"
- }
- ]
- },
- "25891": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Slider#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveminheight"
- }
- ]
- },
- "25892": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Slider#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivewidth"
- }
- ]
- },
- "25893": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Slider#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveheight"
- }
- ]
- },
- "25894": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Slider#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivemargintop"
- }
- ]
- },
- "25895": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Slider#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivemarginright"
- }
- ]
- },
- "25896": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Slider#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivemarginbottom"
- }
- ]
- },
- "25897": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Slider#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivemarginleft"
- }
- ]
- },
- "25898": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Slider#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivepaddingtop"
- }
- ]
- },
- "25899": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Slider#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivepaddingright"
- }
- ]
- },
- "25900": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Slider#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivepaddingbottom"
- }
- ]
- },
- "25901": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Slider#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivepaddingleft"
- }
- ]
- },
- "25902": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Slider#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectivebordertopwidth"
- }
- ]
- },
- "25903": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Slider#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveborderrightwidth"
- }
- ]
- },
- "25904": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Slider#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveborderbottomwidth"
- }
- ]
- },
- "25905": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Slider#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#effectiveborderleftwidth"
- }
- ]
- },
- "25906": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Slider#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#defaultpaddingtop"
- }
- ]
- },
- "25907": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Slider#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#defaultpaddingright"
- }
- ]
- },
- "25908": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Slider#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#defaultpaddingbottom"
- }
- ]
- },
- "25909": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Slider#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#defaultpaddingleft"
- }
- ]
- },
- "25910": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Slider#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Slider#ispaddingrelative"
- }
- ]
- },
- "25912": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Slider#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Slider#reusable"
- }
- ]
- },
- "25913": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Slider#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Slider#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "25917": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Slider#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Slider#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "25921": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Slider#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Slider#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25923": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Slider#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Slider#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "25927": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Slider#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Slider#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25929": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Slider#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Slider#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "25933": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Slider#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Slider#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "25937": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Slider#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Slider#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "25941": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Slider#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Slider#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "25943": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Slider#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Slider#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25945": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Slider#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Slider#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25949": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Slider#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Slider#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25951": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Slider#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Slider#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25953": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Slider#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Slider#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25956": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Slider#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Slider#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25959": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Slider#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Slider#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "25965": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Slider#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Slider#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25967": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Slider#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Slider#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "25969": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Slider#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Slider#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25972": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Slider#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Slider#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25975": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Slider#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Slider#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25979": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Slider#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Slider#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25982": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Slider#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Slider#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25986": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Slider#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Slider#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25990": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Slider#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Slider#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25993": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Slider#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Slider#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "25995": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Slider#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Slider#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "25998": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Slider#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Slider#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26001": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Slider#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Slider#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26004": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Slider#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Slider#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "26006": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Slider#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Slider#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26008": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Slider#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Slider#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26010": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Slider#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Slider#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26015": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Slider#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Slider#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26018": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Slider#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Slider#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26021": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Slider#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Slider#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26024": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Slider#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Slider#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "26027": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Slider#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Slider#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "26031": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Slider#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Slider#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26034": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Slider#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Slider#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "26038": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Slider#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Slider#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26041": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Slider#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Slider#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26044": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Slider#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Slider#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26046": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Slider#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Slider#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "26050": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Slider#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Slider#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26053": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Slider#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Slider#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26055": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Slider#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Slider#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26058": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Slider#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Slider#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "26061": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Slider#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Slider#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26065": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Slider#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Slider#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26073": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Slider#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Slider#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26077": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Slider#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Slider#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26082": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Slider#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Slider#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "26085": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Slider#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Slider#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "26090": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Slider#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Slider#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Slider.md b/content/api/class/Slider.md
deleted file mode 100644
index 4b4b3185..00000000
--- a/content/api/class/Slider.md
+++ /dev/null
@@ -1,162 +0,0 @@
----
-title: Slider
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Slider'
-layout: api
-seo:
- description: "Represents a slider component."
----
-
-
-
-
-
-
-linkTapEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 67,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to linkTap event."
- }
- ]
- },
- "url": "/api/class/Span#linktapevent"
- }
- ]
- },
- "29601": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Span#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Span#loadedevent"
- }
- ]
- },
- "29602": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Span#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Span#unloadedevent"
- }
- ]
- },
- "29603": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Span#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Span#createdevent"
- }
- ]
- },
- "29604": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Span#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Span#disposenativeviewevent"
- }
- ]
- },
- "29605": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Span#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Span#propertychangeevent"
- }
- ]
- },
- "29606": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Span#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29614": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Span#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29622": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Span#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29630": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Span#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29638": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Span#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29646": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Span#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Span(): Span",
- "url": "/api/class/Span#constructor-new-span",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "Span"
- }
- ]
- },
- "29648": {
- "name": "fontFamily",
- "type": "Property",
- "url": "/api/class/Span#fontfamily",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font family of the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontFamily: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 13,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font family of the span."
- }
- ]
- },
- "url": "/api/class/Span#fontfamily"
- }
- ]
- },
- "29649": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/Span#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font size of the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 18,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font size of the span."
- }
- ]
- },
- "url": "/api/class/Span#fontsize"
- }
- ]
- },
- "29650": {
- "name": "fontStyle",
- "type": "Property",
- "url": "/api/class/Span#fontstyle",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font style of the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontStyle: FontStyleType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 23,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font style of the span."
- }
- ]
- },
- "url": "/api/class/Span#fontstyle"
- }
- ]
- },
- "29651": {
- "name": "fontWeight",
- "type": "Property",
- "url": "/api/class/Span#fontweight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font weight of the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "fontWeight: FontWeightType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 28,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font weight of the span."
- }
- ]
- },
- "url": "/api/class/Span#fontweight"
- }
- ]
- },
- "29652": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/Span#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations for the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 33,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations for the span."
- }
- ]
- },
- "url": "/api/class/Span#textdecoration"
- }
- ]
- },
- "29653": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Span#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font foreground color of the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font foreground color of the span."
- }
- ]
- },
- "url": "/api/class/Span#color"
- }
- ]
- },
- "29654": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Span#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font background color of the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "backgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 43,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font background color of the span."
- }
- ]
- },
- "url": "/api/class/Span#backgroundcolor"
- }
- ]
- },
- "29655": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Span#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Span#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "29656": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Span#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Span#iosaccessibilityminfontscale"
- }
- ]
- },
- "29657": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Span#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Span#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "29658": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/Span#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text for the span."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 63,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text for the span."
- }
- ]
- },
- "url": "/api/class/Span#text"
- }
- ]
- },
- "29659": {
- "name": "tappable",
- "type": "Property",
- "url": "/api/class/Span#tappable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets if the span is tappable or not."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "tappable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/span.d.ts",
- "line": 72,
- "character": 17
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets if the span is tappable or not."
- }
- ]
- },
- "url": "/api/class/Span#tappable"
- }
- ]
- },
- "29663": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Span#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#domnode"
- }
- ]
- },
- "29664": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Span#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#recyclenativeview"
- }
- ]
- },
- "29665": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Span#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Span#viewcontroller"
- }
- ]
- },
- "29666": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Span#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#bindingcontext"
- }
- ]
- },
- "29667": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Span#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Span#nativeviewprotected"
- }
- ]
- },
- "29668": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Span#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Span#parent"
- }
- ]
- },
- "29669": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Span#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Span#iscollapsed"
- }
- ]
- },
- "29670": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Span#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Span#id"
- }
- ]
- },
- "29671": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Span#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Span#classname"
- }
- ]
- },
- "29672": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Span#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Span#sharedtransitiontag"
- }
- ]
- },
- "29673": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Span#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Span#sharedtransitionignore"
- }
- ]
- },
- "29674": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Span#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#domid"
- }
- ]
- },
- "29675": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Span#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#context"
- }
- ]
- },
- "29676": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Span#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#isaddedtonativevisualtree"
- }
- ]
- },
- "29677": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Span#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#cssstate"
- }
- ]
- },
- "29678": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Span#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#stylescope"
- }
- ]
- },
- "29683": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Span#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Span#suspendnativeupdatescount"
- }
- ]
- },
- "29684": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Span#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#isstylescopehost"
- }
- ]
- },
- "29685": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Span#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "29686": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Span#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#left"
- }
- ]
- },
- "29687": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Span#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#top"
- }
- ]
- },
- "29688": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Span#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveleft"
- }
- ]
- },
- "29689": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Span#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivetop"
- }
- ]
- },
- "29690": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Span#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#dock"
- }
- ]
- },
- "29691": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Span#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#row"
- }
- ]
- },
- "29692": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Span#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#col"
- }
- ]
- },
- "29693": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Span#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#column"
- }
- ]
- },
- "29694": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Span#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#rowspan"
- }
- ]
- },
- "29695": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Span#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#colspan"
- }
- ]
- },
- "29696": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Span#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#columnspan"
- }
- ]
- },
- "29697": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Span#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#order"
- }
- ]
- },
- "29698": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Span#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#flexgrow"
- }
- ]
- },
- "29699": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Span#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#flexshrink"
- }
- ]
- },
- "29700": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Span#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#flexwrapbefore"
- }
- ]
- },
- "29701": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Span#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#alignself"
- }
- ]
- },
- "29702": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Span#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#oldleft"
- }
- ]
- },
- "29703": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Span#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#oldtop"
- }
- ]
- },
- "29704": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Span#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#oldright"
- }
- ]
- },
- "29705": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Span#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#oldbottom"
- }
- ]
- },
- "29706": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Span#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#ignoreflexminwidthheightreset"
- }
- ]
- },
- "29707": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Span#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveminwidth"
- }
- ]
- },
- "29708": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Span#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveminheight"
- }
- ]
- },
- "29709": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Span#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivewidth"
- }
- ]
- },
- "29710": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Span#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveheight"
- }
- ]
- },
- "29711": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Span#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivemargintop"
- }
- ]
- },
- "29712": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Span#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivemarginright"
- }
- ]
- },
- "29713": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Span#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivemarginbottom"
- }
- ]
- },
- "29714": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Span#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivemarginleft"
- }
- ]
- },
- "29715": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Span#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivepaddingtop"
- }
- ]
- },
- "29716": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Span#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivepaddingright"
- }
- ]
- },
- "29717": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Span#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivepaddingbottom"
- }
- ]
- },
- "29718": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Span#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivepaddingleft"
- }
- ]
- },
- "29719": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Span#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectivebordertopwidth"
- }
- ]
- },
- "29720": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Span#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveborderrightwidth"
- }
- ]
- },
- "29721": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Span#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveborderbottomwidth"
- }
- ]
- },
- "29722": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Span#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#effectiveborderleftwidth"
- }
- ]
- },
- "29723": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Span#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#defaultpaddingtop"
- }
- ]
- },
- "29724": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Span#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#defaultpaddingright"
- }
- ]
- },
- "29725": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Span#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#defaultpaddingbottom"
- }
- ]
- },
- "29726": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Span#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#defaultpaddingleft"
- }
- ]
- },
- "29727": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Span#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#ispaddingrelative"
- }
- ]
- },
- "29729": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Span#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Span#reusable"
- }
- ]
- },
- "29730": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Span#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Span#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "29734": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Span#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Span#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29738": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Span#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Span#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29740": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Span#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Span#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "29744": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/Span#android",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/Span#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 280,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29746": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/Span#ios",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/Span#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 281,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29748": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Span#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Span#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "29750": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Span#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Span#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29754": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Span#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Span#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29758": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Span#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Span#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29762": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Span#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Span#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "29764": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Span#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Span#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29766": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Span#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Span#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29770": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Span#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Span#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29772": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Span#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Span#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29774": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Span#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Span#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29776": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Span#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Span#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29779": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Span#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Span#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29782": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Span#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Span#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29788": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Span#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Span#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29790": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Span#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Span#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29792": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Span#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#cssclasses"
- }
- ]
- },
- "29793": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Span#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/Span#csspseudoclasses"
- }
- ]
- },
- "29794": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Span#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Span#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29797": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Span#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Span#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29800": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Span#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Span#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29804": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Span#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Span#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29807": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Span#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Span#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29809": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Span#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Span#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29815": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Span#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Span#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29819": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Span#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Span#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29823": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Span#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Span#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29826": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Span#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Span#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "29828": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Span#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Span#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29831": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Span#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Span#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29834": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Span#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Span#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29837": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Span#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Span#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "29839": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Span#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Span#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29841": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Span#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Span#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29843": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Span#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Span#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29845": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Span#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Span#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29848": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Span#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Span#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29853": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Span#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Span#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29856": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Span#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Span#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29859": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Span#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Span#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29862": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Span#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Span#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "29865": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Span#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Span#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29869": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Span#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Span#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29872": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/Span#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/Span#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29875": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Span#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Span#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29879": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Span#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Span#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29882": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Span#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Span#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29885": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Span#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Span#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29887": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Span#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Span#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29891": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Span#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Span#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29894": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Span#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/Span#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/Span#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "29901": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Span#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Span#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29904": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Span#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Span#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29906": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Span#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Span#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29909": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Span#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Span#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "29912": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Span#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Span#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29916": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Span#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29924": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Span#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29932": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Span#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29940": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Span#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29948": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Span#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Span#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29956": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Span#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Span#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29960": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Span#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Span#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29965": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Span#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Span#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29968": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Span#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Span#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "29973": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Span#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Span#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Span.md b/content/api/class/Span.md
deleted file mode 100644
index 5d054a1b..00000000
--- a/content/api/class/Span.md
+++ /dev/null
@@ -1,232 +0,0 @@
----
-title: Span
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Span'
-layout: api
-seo:
- description: "A class used to create a single part of formatted string with a common text properties."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/StackLayout#layoutchangedevent"
- }
- ]
- },
- "38541": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/StackLayout#showingmodallyevent"
- }
- ]
- },
- "38542": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/StackLayout#shownmodallyevent"
- }
- ]
- },
- "38543": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityblurevent"
- }
- ]
- },
- "38544": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityfocusevent"
- }
- ]
- },
- "38545": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "38546": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/StackLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/StackLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "38555": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/StackLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/StackLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38563": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/StackLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/StackLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "38569": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/StackLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/StackLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "38573": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "38574": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/StackLayout#loadedevent"
- }
- ]
- },
- "38575": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/StackLayout#unloadedevent"
- }
- ]
- },
- "38576": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/StackLayout#createdevent"
- }
- ]
- },
- "38577": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/StackLayout#disposenativeviewevent"
- }
- ]
- },
- "38578": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/StackLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/StackLayout#propertychangeevent"
- }
- ]
- },
- "38579": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/StackLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38587": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/StackLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38595": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/StackLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38603": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/StackLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38611": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/StackLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38619": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/StackLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new StackLayout(): StackLayout",
- "url": "/api/class/StackLayout#constructor-new-stacklayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "StackLayout"
- }
- ]
- },
- "38621": {
- "name": "orientation",
- "type": "Property",
- "url": "/api/class/StackLayout#orientation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if layout should be horizontal or vertical.\nThe default value is vertical."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "orientation: OrientationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/stack-layout/index.d.ts",
- "line": 13,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if layout should be horizontal or vertical.\nThe default value is vertical."
- }
- ]
- },
- "url": "/api/class/StackLayout#orientation"
- }
- ]
- },
- "38622": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/StackLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/StackLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "38624": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/StackLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/StackLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "38627": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/StackLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/StackLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "38630": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/StackLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/StackLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38633": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/StackLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/StackLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38637": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/StackLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/StackLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38640": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/StackLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/StackLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38642": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/StackLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/StackLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38645": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/StackLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/StackLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38648": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/StackLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/StackLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38655": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/StackLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/StackLayout#padding"
- }
- ]
- },
- "38656": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/StackLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/StackLayout#paddingbottom"
- }
- ]
- },
- "38657": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/StackLayout#paddingleft"
- }
- ]
- },
- "38658": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/StackLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/StackLayout#paddingright"
- }
- ]
- },
- "38659": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/StackLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/StackLayout#paddingtop"
- }
- ]
- },
- "38660": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/StackLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/StackLayout#cliptobounds"
- }
- ]
- },
- "38661": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/StackLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#ispassthroughparentenabled"
- }
- ]
- },
- "38673": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/StackLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/StackLayout#iosoverflowsafearea"
- }
- ]
- },
- "38674": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/StackLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/StackLayout#android"
- }
- ]
- },
- "38675": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/StackLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/StackLayout#ios"
- }
- ]
- },
- "38676": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/StackLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/StackLayout#bindingcontext"
- }
- ]
- },
- "38677": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/StackLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#bordercolor"
- }
- ]
- },
- "38678": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/StackLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#bordertopcolor"
- }
- ]
- },
- "38679": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/StackLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderrightcolor"
- }
- ]
- },
- "38680": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/StackLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderbottomcolor"
- }
- ]
- },
- "38681": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/StackLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderleftcolor"
- }
- ]
- },
- "38682": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderwidth"
- }
- ]
- },
- "38683": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#bordertopwidth"
- }
- ]
- },
- "38684": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderrightwidth"
- }
- ]
- },
- "38685": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderbottomwidth"
- }
- ]
- },
- "38686": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderleftwidth"
- }
- ]
- },
- "38687": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/StackLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderradius"
- }
- ]
- },
- "38688": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/StackLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#bordertopleftradius"
- }
- ]
- },
- "38689": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/StackLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#bordertoprightradius"
- }
- ]
- },
- "38690": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/StackLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderbottomrightradius"
- }
- ]
- },
- "38691": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/StackLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#borderbottomleftradius"
- }
- ]
- },
- "38692": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/StackLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#color"
- }
- ]
- },
- "38693": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/StackLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessible"
- }
- ]
- },
- "38694": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityhidden"
- }
- ]
- },
- "38695": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityidentifier"
- }
- ]
- },
- "38696": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityrole"
- }
- ]
- },
- "38697": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilitystate"
- }
- ]
- },
- "38698": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilitylabel"
- }
- ]
- },
- "38699": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityvalue"
- }
- ]
- },
- "38700": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilityhint"
- }
- ]
- },
- "38701": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#accessibilityliveregion"
- }
- ]
- },
- "38702": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilitylanguage"
- }
- ]
- },
- "38703": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/StackLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/StackLayout#accessibilitymediasession"
- }
- ]
- },
- "38704": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/StackLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/StackLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "38705": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/StackLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/StackLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "38706": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/StackLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/StackLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "38707": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/StackLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/StackLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "38708": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/StackLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#automationtext"
- }
- ]
- },
- "38709": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/StackLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/StackLayout#androidelevation"
- }
- ]
- },
- "38710": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/StackLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/StackLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "38711": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/StackLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/StackLayout#background"
- }
- ]
- },
- "38712": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/StackLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#backgroundcolor"
- }
- ]
- },
- "38713": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/StackLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#backgroundimage"
- }
- ]
- },
- "38714": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/StackLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#boxshadow"
- }
- ]
- },
- "38715": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/StackLayout#minwidth"
- }
- ]
- },
- "38716": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/StackLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/StackLayout#minheight"
- }
- ]
- },
- "38717": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/StackLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#width"
- }
- ]
- },
- "38718": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/StackLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#height"
- }
- ]
- },
- "38719": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/StackLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/StackLayout#margin"
- }
- ]
- },
- "38720": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/StackLayout#marginleft"
- }
- ]
- },
- "38721": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/StackLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/StackLayout#margintop"
- }
- ]
- },
- "38722": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/StackLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/StackLayout#marginright"
- }
- ]
- },
- "38723": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/StackLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/StackLayout#marginbottom"
- }
- ]
- },
- "38724": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/StackLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/StackLayout#horizontalalignment"
- }
- ]
- },
- "38725": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/StackLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/StackLayout#verticalalignment"
- }
- ]
- },
- "38726": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/StackLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#visibility"
- }
- ]
- },
- "38727": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/StackLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/StackLayout#opacity"
- }
- ]
- },
- "38728": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/StackLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/StackLayout#rotate"
- }
- ]
- },
- "38729": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/StackLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/StackLayout#rotatex"
- }
- ]
- },
- "38730": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/StackLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/StackLayout#rotatey"
- }
- ]
- },
- "38731": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/StackLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/StackLayout#perspective"
- }
- ]
- },
- "38732": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/StackLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/StackLayout#translatex"
- }
- ]
- },
- "38733": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/StackLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/StackLayout#translatey"
- }
- ]
- },
- "38734": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/StackLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#scalex"
- }
- ]
- },
- "38735": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/StackLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#scaley"
- }
- ]
- },
- "38736": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/StackLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#originx"
- }
- ]
- },
- "38737": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/StackLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#originy"
- }
- ]
- },
- "38738": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/StackLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#isenabled"
- }
- ]
- },
- "38739": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/StackLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/StackLayout#isuserinteractionenabled"
- }
- ]
- },
- "38740": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/StackLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/StackLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "38741": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/StackLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/StackLayout#iosignoresafearea"
- }
- ]
- },
- "38742": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/StackLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/StackLayout#islayoutvalid"
- }
- ]
- },
- "38743": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/StackLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/StackLayout#csstype"
- }
- ]
- },
- "38744": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/StackLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#cssclasses"
- }
- ]
- },
- "38745": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/StackLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#csspseudoclasses"
- }
- ]
- },
- "38746": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/StackLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/StackLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38750": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/StackLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/StackLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38757": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/StackLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/StackLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "38759": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/StackLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/StackLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "38761": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/StackLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/StackLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "38763": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/StackLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/StackLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38767": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/StackLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/StackLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38773": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/StackLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/StackLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38777": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/StackLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/StackLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38783": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/StackLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/StackLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38785": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/StackLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/StackLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "38788": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/StackLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/StackLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "38796": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/StackLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/StackLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/StackLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/StackLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/StackLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/StackLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "38839": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/StackLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/StackLayout#modal"
- }
- ]
- },
- "38840": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/StackLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/StackLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "38843": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/StackLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/StackLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "38846": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/StackLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/StackLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "38853": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/StackLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/StackLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "38855": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/StackLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/StackLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "38857": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/StackLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/StackLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "38860": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/StackLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/StackLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "38862": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/StackLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/StackLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38874": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/StackLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/StackLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "38876": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/StackLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/StackLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38878": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/StackLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/StackLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "38880": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/StackLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/StackLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38886": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/StackLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/StackLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38888": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/StackLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/StackLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "38890": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/StackLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/StackLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38892": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/StackLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/StackLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38898": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/StackLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/StackLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38901": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/StackLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/StackLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38904": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/StackLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/StackLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38973": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/StackLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/StackLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38979": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/StackLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/StackLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "38984": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/StackLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/StackLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38986": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/StackLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/StackLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "38988": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/StackLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/StackLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "38991": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/StackLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/StackLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "38994": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/StackLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/StackLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "38998": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/StackLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#testid"
- }
- ]
- },
- "38999": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/StackLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#touchanimation"
- }
- ]
- },
- "39000": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/StackLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#ignoretouchanimation"
- }
- ]
- },
- "39001": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/StackLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#touchdelay"
- }
- ]
- },
- "39002": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/StackLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#closemodalcallback"
- }
- ]
- },
- "39003": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/StackLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/StackLayout#transitionid"
- }
- ]
- },
- "39004": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/StackLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#islayoutvalid"
- }
- ]
- },
- "39005": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/StackLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/StackLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39007": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/StackLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/StackLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39010": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/StackLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39018": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/StackLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39026": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/StackLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39034": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/StackLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/StackLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "39037": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/StackLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/StackLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39040": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/StackLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/StackLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39044": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/StackLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/StackLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39050": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/StackLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/StackLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39052": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/StackLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/StackLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39054": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/StackLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/StackLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39056": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/StackLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/StackLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39060": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/StackLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/StackLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39064": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/StackLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/StackLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "39068": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/StackLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/StackLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "39072": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/StackLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/StackLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39074": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/StackLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/StackLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39080": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/StackLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/StackLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39082": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/StackLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/StackLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39086": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/StackLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#domnode"
- }
- ]
- },
- "39087": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/StackLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#recyclenativeview"
- }
- ]
- },
- "39088": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/StackLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/StackLayout#viewcontroller"
- }
- ]
- },
- "39089": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/StackLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/StackLayout#nativeviewprotected"
- }
- ]
- },
- "39090": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/StackLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/StackLayout#parent"
- }
- ]
- },
- "39091": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/StackLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/StackLayout#iscollapsed"
- }
- ]
- },
- "39092": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/StackLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/StackLayout#id"
- }
- ]
- },
- "39093": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/StackLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/StackLayout#classname"
- }
- ]
- },
- "39094": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/StackLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/StackLayout#sharedtransitiontag"
- }
- ]
- },
- "39095": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/StackLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/StackLayout#sharedtransitionignore"
- }
- ]
- },
- "39096": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/StackLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#domid"
- }
- ]
- },
- "39097": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/StackLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#context"
- }
- ]
- },
- "39098": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/StackLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "39099": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/StackLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#cssstate"
- }
- ]
- },
- "39100": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/StackLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#stylescope"
- }
- ]
- },
- "39105": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/StackLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/StackLayout#suspendnativeupdatescount"
- }
- ]
- },
- "39106": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/StackLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#isstylescopehost"
- }
- ]
- },
- "39107": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/StackLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "39108": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/StackLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#left"
- }
- ]
- },
- "39109": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/StackLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#top"
- }
- ]
- },
- "39110": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveleft"
- }
- ]
- },
- "39111": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivetop"
- }
- ]
- },
- "39112": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/StackLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#dock"
- }
- ]
- },
- "39113": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/StackLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#row"
- }
- ]
- },
- "39114": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/StackLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#col"
- }
- ]
- },
- "39115": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/StackLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#column"
- }
- ]
- },
- "39116": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/StackLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#rowspan"
- }
- ]
- },
- "39117": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/StackLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#colspan"
- }
- ]
- },
- "39118": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/StackLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#columnspan"
- }
- ]
- },
- "39119": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/StackLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#order"
- }
- ]
- },
- "39120": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/StackLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#flexgrow"
- }
- ]
- },
- "39121": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/StackLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#flexshrink"
- }
- ]
- },
- "39122": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/StackLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#flexwrapbefore"
- }
- ]
- },
- "39123": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/StackLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#alignself"
- }
- ]
- },
- "39124": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#oldleft"
- }
- ]
- },
- "39125": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/StackLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#oldtop"
- }
- ]
- },
- "39126": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/StackLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#oldright"
- }
- ]
- },
- "39127": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/StackLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#oldbottom"
- }
- ]
- },
- "39128": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/StackLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "39129": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveminwidth"
- }
- ]
- },
- "39130": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveminheight"
- }
- ]
- },
- "39131": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivewidth"
- }
- ]
- },
- "39132": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveheight"
- }
- ]
- },
- "39133": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivemargintop"
- }
- ]
- },
- "39134": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivemarginright"
- }
- ]
- },
- "39135": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivemarginbottom"
- }
- ]
- },
- "39136": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivemarginleft"
- }
- ]
- },
- "39137": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivepaddingtop"
- }
- ]
- },
- "39138": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivepaddingright"
- }
- ]
- },
- "39139": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivepaddingbottom"
- }
- ]
- },
- "39140": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivepaddingleft"
- }
- ]
- },
- "39141": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectivebordertopwidth"
- }
- ]
- },
- "39142": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveborderrightwidth"
- }
- ]
- },
- "39143": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "39144": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/StackLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#effectiveborderleftwidth"
- }
- ]
- },
- "39145": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/StackLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#defaultpaddingtop"
- }
- ]
- },
- "39146": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/StackLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#defaultpaddingright"
- }
- ]
- },
- "39147": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/StackLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#defaultpaddingbottom"
- }
- ]
- },
- "39148": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/StackLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#defaultpaddingleft"
- }
- ]
- },
- "39149": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/StackLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/StackLayout#ispaddingrelative"
- }
- ]
- },
- "39151": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/StackLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/StackLayout#reusable"
- }
- ]
- },
- "39152": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/StackLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/StackLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "39156": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/StackLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/StackLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "39160": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/StackLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/StackLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39162": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/StackLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/StackLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "39166": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/StackLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/StackLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39168": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/StackLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/StackLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39172": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/StackLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/StackLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "39176": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/StackLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/StackLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "39180": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/StackLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/StackLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "39182": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/StackLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/StackLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39184": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/StackLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/StackLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39188": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/StackLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/StackLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39190": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/StackLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/StackLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39192": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/StackLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/StackLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39195": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/StackLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/StackLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39198": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/StackLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/StackLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "39204": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/StackLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/StackLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39206": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/StackLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/StackLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39208": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/StackLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/StackLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39211": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/StackLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/StackLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39214": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/StackLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/StackLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39218": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/StackLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/StackLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39221": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/StackLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/StackLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39225": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/StackLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/StackLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39229": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/StackLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/StackLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39232": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/StackLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/StackLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39234": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/StackLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/StackLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39237": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/StackLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/StackLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39240": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/StackLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/StackLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39243": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/StackLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/StackLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "39245": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/StackLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/StackLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39247": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/StackLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/StackLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39249": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/StackLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/StackLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39254": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/StackLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/StackLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39257": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/StackLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/StackLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39260": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/StackLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/StackLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39263": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/StackLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/StackLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "39266": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/StackLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/StackLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "39270": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/StackLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/StackLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39273": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/StackLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/StackLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "39277": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/StackLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/StackLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39280": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/StackLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/StackLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39283": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/StackLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/StackLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39285": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/StackLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/StackLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39289": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/StackLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/StackLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39292": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/StackLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/StackLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39294": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/StackLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/StackLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39297": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/StackLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/StackLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "39300": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/StackLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/StackLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39304": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/StackLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/StackLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39312": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/StackLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/StackLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39316": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/StackLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/StackLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39321": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/StackLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/StackLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "39324": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/StackLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/StackLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "39329": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/StackLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/StackLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/StackLayout.md b/content/api/class/StackLayout.md
deleted file mode 100644
index 6e6c0f0b..00000000
--- a/content/api/class/StackLayout.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-title: StackLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'StackLayout'
-layout: api
-seo:
- description: "A Layout that arranges its children horizontally or vertically. The direction can be set by orientation property."
----
-
-
-
-
-
-
-propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Style#propertychangeevent"
- }
- ]
- },
- "26315": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Style#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26323": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Style#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26331": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Style#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26339": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Style#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26347": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Style#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26355": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Style#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Style(ownerView: ViewBase | WeakRef<ViewBase>): Style",
- "url": "/api/class/Style#constructor-new-style",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "ownerView",
- "type": "ViewBase | WeakRef<ViewBase>",
- "flags": {}
- }
- ],
- "returns": "Style"
- }
- ]
- },
- "26360": {
- "name": "setScopedCssVariable",
- "type": "Method",
- "url": "/api/class/Style#setscopedcssvariable",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setScopedCssVariable(varName: string, value: string): void",
- "url": "/api/class/Style#setscopedcssvariable-setscopedcssvariable-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "varName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26364": {
- "name": "setUnscopedCssVariable",
- "type": "Method",
- "url": "/api/class/Style#setunscopedcssvariable",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setUnscopedCssVariable(varName: string, value: string): void",
- "url": "/api/class/Style#setunscopedcssvariable-setunscopedcssvariable-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 33,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "varName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26368": {
- "name": "removeScopedCssVariable",
- "type": "Method",
- "url": "/api/class/Style#removescopedcssvariable",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeScopedCssVariable(varName: string): void",
- "url": "/api/class/Style#removescopedcssvariable-removescopedcssvariable-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 34,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "varName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26371": {
- "name": "removeUnscopedCssVariable",
- "type": "Method",
- "url": "/api/class/Style#removeunscopedcssvariable",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeUnscopedCssVariable(varName: string): void",
- "url": "/api/class/Style#removeunscopedcssvariable-removeunscopedcssvariable-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 35,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "varName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26374": {
- "name": "getCssVariable",
- "type": "Method",
- "url": "/api/class/Style#getcssvariable",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCssVariable(varName: string): string",
- "url": "/api/class/Style#getcssvariable-getcssvariable-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 36,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "varName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "string"
- }
- ]
- },
- "26377": {
- "name": "resetScopedCssVariables",
- "type": "Method",
- "url": "/api/class/Style#resetscopedcssvariables",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetScopedCssVariables(): void",
- "url": "/api/class/Style#resetscopedcssvariables-resetscopedcssvariables-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 37,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26379": {
- "name": "resetUnscopedCssVariables",
- "type": "Method",
- "url": "/api/class/Style#resetunscopedcssvariables",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetUnscopedCssVariables(): void",
- "url": "/api/class/Style#resetunscopedcssvariables-resetunscopedcssvariables-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 38,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26381": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Style#tostring",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Style#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 39,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "26383": {
- "name": "fontInternal",
- "type": "Property",
- "url": "/api/class/Style#fontinternal",
- "flags": {},
- "signatures": [
- {
- "code": "fontInternal: Font",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 40,
- "character": 4
- }
- ],
- "url": "/api/class/Style#fontinternal"
- }
- ]
- },
- "26384": {
- "name": "fontScaleInternal",
- "type": "Property",
- "url": "/api/class/Style#fontscaleinternal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This property ensures inheritance of a11y scale among views."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "fontScaleInternal: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This property ensures inheritance of a11y scale among views."
- }
- ]
- },
- "url": "/api/class/Style#fontscaleinternal"
- }
- ]
- },
- "26385": {
- "name": "backgroundInternal",
- "type": "Property",
- "url": "/api/class/Style#backgroundinternal",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundInternal: Background",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 45,
- "character": 4
- }
- ],
- "url": "/api/class/Style#backgroundinternal"
- }
- ]
- },
- "26386": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Style#rotate",
- "flags": {},
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 46,
- "character": 4
- }
- ],
- "url": "/api/class/Style#rotate"
- }
- ]
- },
- "26387": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Style#rotatex",
- "flags": {},
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 47,
- "character": 4
- }
- ],
- "url": "/api/class/Style#rotatex"
- }
- ]
- },
- "26388": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Style#rotatey",
- "flags": {},
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 48,
- "character": 4
- }
- ],
- "url": "/api/class/Style#rotatey"
- }
- ]
- },
- "26389": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Style#perspective",
- "flags": {},
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "url": "/api/class/Style#perspective"
- }
- ]
- },
- "26390": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Style#scalex",
- "flags": {},
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 50,
- "character": 4
- }
- ],
- "url": "/api/class/Style#scalex"
- }
- ]
- },
- "26391": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Style#scaley",
- "flags": {},
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 51,
- "character": 4
- }
- ],
- "url": "/api/class/Style#scaley"
- }
- ]
- },
- "26392": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Style#translatex",
- "flags": {},
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "url": "/api/class/Style#translatex"
- }
- ]
- },
- "26393": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Style#translatey",
- "flags": {},
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "url": "/api/class/Style#translatey"
- }
- ]
- },
- "26394": {
- "name": "clipPath",
- "type": "Property",
- "url": "/api/class/Style#clippath",
- "flags": {},
- "signatures": [
- {
- "code": "clipPath: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 54,
- "character": 4
- }
- ],
- "url": "/api/class/Style#clippath"
- }
- ]
- },
- "26395": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Style#color",
- "flags": {},
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "url": "/api/class/Style#color"
- }
- ]
- },
- "26396": {
- "name": "tintColor",
- "type": "Property",
- "url": "/api/class/Style#tintcolor",
- "flags": {},
- "signatures": [
- {
- "code": "tintColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "url": "/api/class/Style#tintcolor"
- }
- ]
- },
- "26397": {
- "name": "placeholderColor",
- "type": "Property",
- "url": "/api/class/Style#placeholdercolor",
- "flags": {},
- "signatures": [
- {
- "code": "placeholderColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 57,
- "character": 4
- }
- ],
- "url": "/api/class/Style#placeholdercolor"
- }
- ]
- },
- "26398": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Style#background",
- "flags": {},
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 58,
- "character": 4
- }
- ],
- "url": "/api/class/Style#background"
- }
- ]
- },
- "26399": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Style#backgroundcolor",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "url": "/api/class/Style#backgroundcolor"
- }
- ]
- },
- "26400": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Style#backgroundimage",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "url": "/api/class/Style#backgroundimage"
- }
- ]
- },
- "26401": {
- "name": "backgroundRepeat",
- "type": "Property",
- "url": "/api/class/Style#backgroundrepeat",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundRepeat: BackgroundRepeatType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 61,
- "character": 4
- }
- ],
- "url": "/api/class/Style#backgroundrepeat"
- }
- ]
- },
- "26402": {
- "name": "backgroundSize",
- "type": "Property",
- "url": "/api/class/Style#backgroundsize",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundSize: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 62,
- "character": 4
- }
- ],
- "url": "/api/class/Style#backgroundsize"
- }
- ]
- },
- "26403": {
- "name": "backgroundPosition",
- "type": "Property",
- "url": "/api/class/Style#backgroundposition",
- "flags": {},
- "signatures": [
- {
- "code": "backgroundPosition: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "url": "/api/class/Style#backgroundposition"
- }
- ]
- },
- "26404": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Style#bordercolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 64,
- "character": 4
- }
- ],
- "url": "/api/class/Style#bordercolor"
- }
- ]
- },
- "26405": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Style#bordertopcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "url": "/api/class/Style#bordertopcolor"
- }
- ]
- },
- "26406": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Style#borderrightcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderrightcolor"
- }
- ]
- },
- "26407": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Style#borderbottomcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 67,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderbottomcolor"
- }
- ]
- },
- "26408": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Style#borderleftcolor",
- "flags": {},
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderleftcolor"
- }
- ]
- },
- "26409": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Style#borderwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderwidth"
- }
- ]
- },
- "26410": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Style#bordertopwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 70,
- "character": 4
- }
- ],
- "url": "/api/class/Style#bordertopwidth"
- }
- ]
- },
- "26411": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Style#borderrightwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 71,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderrightwidth"
- }
- ]
- },
- "26412": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Style#borderbottomwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 72,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderbottomwidth"
- }
- ]
- },
- "26413": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Style#borderleftwidth",
- "flags": {},
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderleftwidth"
- }
- ]
- },
- "26414": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Style#borderradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderradius"
- }
- ]
- },
- "26415": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Style#bordertopleftradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 75,
- "character": 4
- }
- ],
- "url": "/api/class/Style#bordertopleftradius"
- }
- ]
- },
- "26416": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Style#bordertoprightradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "url": "/api/class/Style#bordertoprightradius"
- }
- ]
- },
- "26417": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Style#borderbottomrightradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderbottomrightradius"
- }
- ]
- },
- "26418": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Style#borderbottomleftradius",
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "url": "/api/class/Style#borderbottomleftradius"
- }
- ]
- },
- "26419": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Style#boxshadow",
- "flags": {},
- "signatures": [
- {
- "code": "boxShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "url": "/api/class/Style#boxshadow"
- }
- ]
- },
- "26420": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/Style#fontsize",
- "flags": {},
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "url": "/api/class/Style#fontsize"
- }
- ]
- },
- "26421": {
- "name": "fontFamily",
- "type": "Property",
- "url": "/api/class/Style#fontfamily",
- "flags": {},
- "signatures": [
- {
- "code": "fontFamily: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 81,
- "character": 4
- }
- ],
- "url": "/api/class/Style#fontfamily"
- }
- ]
- },
- "26422": {
- "name": "fontStyle",
- "type": "Property",
- "url": "/api/class/Style#fontstyle",
- "flags": {},
- "signatures": [
- {
- "code": "fontStyle: FontStyleType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 82,
- "character": 4
- }
- ],
- "url": "/api/class/Style#fontstyle"
- }
- ]
- },
- "26423": {
- "name": "fontWeight",
- "type": "Property",
- "url": "/api/class/Style#fontweight",
- "flags": {},
- "signatures": [
- {
- "code": "fontWeight: FontWeightType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 83,
- "character": 4
- }
- ],
- "url": "/api/class/Style#fontweight"
- }
- ]
- },
- "26424": {
- "name": "font",
- "type": "Property",
- "url": "/api/class/Style#font",
- "flags": {},
- "signatures": [
- {
- "code": "font: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "url": "/api/class/Style#font"
- }
- ]
- },
- "26425": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/Style#maxlines",
- "flags": {},
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 85,
- "character": 4
- }
- ],
- "url": "/api/class/Style#maxlines"
- }
- ]
- },
- "26426": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Style#androidelevation",
- "flags": {},
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 86,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androidelevation"
- }
- ]
- },
- "26427": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Style#androiddynamicelevationoffset",
- "flags": {},
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 87,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androiddynamicelevationoffset"
- }
- ]
- },
- "26428": {
- "name": "zIndex",
- "type": "Property",
- "url": "/api/class/Style#zindex",
- "flags": {},
- "signatures": [
- {
- "code": "zIndex: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "url": "/api/class/Style#zindex"
- }
- ]
- },
- "26429": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Style#opacity",
- "flags": {},
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 89,
- "character": 4
- }
- ],
- "url": "/api/class/Style#opacity"
- }
- ]
- },
- "26430": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Style#visibility",
- "flags": {},
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 90,
- "character": 4
- }
- ],
- "url": "/api/class/Style#visibility"
- }
- ]
- },
- "26431": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/Style#letterspacing",
- "flags": {},
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 91,
- "character": 4
- }
- ],
- "url": "/api/class/Style#letterspacing"
- }
- ]
- },
- "26432": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/Style#lineheight",
- "flags": {},
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "url": "/api/class/Style#lineheight"
- }
- ]
- },
- "26433": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/Style#textalignment",
- "flags": {},
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 93,
- "character": 4
- }
- ],
- "url": "/api/class/Style#textalignment"
- }
- ]
- },
- "26434": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/Style#textdecoration",
- "flags": {},
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 94,
- "character": 4
- }
- ],
- "url": "/api/class/Style#textdecoration"
- }
- ]
- },
- "26435": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/Style#texttransform",
- "flags": {},
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 95,
- "character": 4
- }
- ],
- "url": "/api/class/Style#texttransform"
- }
- ]
- },
- "26436": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/Style#textshadow",
- "flags": {},
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 96,
- "character": 4
- }
- ],
- "url": "/api/class/Style#textshadow"
- }
- ]
- },
- "26437": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/Style#whitespace",
- "flags": {},
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 97,
- "character": 4
- }
- ],
- "url": "/api/class/Style#whitespace"
- }
- ]
- },
- "26438": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Style#minwidth",
- "flags": {},
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 98,
- "character": 4
- }
- ],
- "url": "/api/class/Style#minwidth"
- }
- ]
- },
- "26439": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Style#minheight",
- "flags": {},
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "url": "/api/class/Style#minheight"
- }
- ]
- },
- "26440": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Style#width",
- "flags": {},
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 100,
- "character": 4
- }
- ],
- "url": "/api/class/Style#width"
- }
- ]
- },
- "26441": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Style#height",
- "flags": {},
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 101,
- "character": 4
- }
- ],
- "url": "/api/class/Style#height"
- }
- ]
- },
- "26442": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Style#margin",
- "flags": {},
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 102,
- "character": 4
- }
- ],
- "url": "/api/class/Style#margin"
- }
- ]
- },
- "26443": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Style#marginleft",
- "flags": {},
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 103,
- "character": 4
- }
- ],
- "url": "/api/class/Style#marginleft"
- }
- ]
- },
- "26444": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Style#margintop",
- "flags": {},
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 104,
- "character": 4
- }
- ],
- "url": "/api/class/Style#margintop"
- }
- ]
- },
- "26445": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Style#marginright",
- "flags": {},
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 105,
- "character": 4
- }
- ],
- "url": "/api/class/Style#marginright"
- }
- ]
- },
- "26446": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Style#marginbottom",
- "flags": {},
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "url": "/api/class/Style#marginbottom"
- }
- ]
- },
- "26447": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/Style#padding",
- "flags": {},
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 107,
- "character": 4
- }
- ],
- "url": "/api/class/Style#padding"
- }
- ]
- },
- "26448": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/Style#paddingleft",
- "flags": {},
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 108,
- "character": 4
- }
- ],
- "url": "/api/class/Style#paddingleft"
- }
- ]
- },
- "26449": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/Style#paddingtop",
- "flags": {},
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 109,
- "character": 4
- }
- ],
- "url": "/api/class/Style#paddingtop"
- }
- ]
- },
- "26450": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/Style#paddingright",
- "flags": {},
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "url": "/api/class/Style#paddingright"
- }
- ]
- },
- "26451": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/Style#paddingbottom",
- "flags": {},
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 111,
- "character": 4
- }
- ],
- "url": "/api/class/Style#paddingbottom"
- }
- ]
- },
- "26452": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Style#horizontalalignment",
- "flags": {},
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 112,
- "character": 4
- }
- ],
- "url": "/api/class/Style#horizontalalignment"
- }
- ]
- },
- "26453": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Style#verticalalignment",
- "flags": {},
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 113,
- "character": 4
- }
- ],
- "url": "/api/class/Style#verticalalignment"
- }
- ]
- },
- "26454": {
- "name": "tabTextFontSize",
- "type": "Property",
- "url": "/api/class/Style#tabtextfontsize",
- "flags": {},
- "signatures": [
- {
- "code": "tabTextFontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 114,
- "character": 4
- }
- ],
- "url": "/api/class/Style#tabtextfontsize"
- }
- ]
- },
- "26455": {
- "name": "tabTextColor",
- "type": "Property",
- "url": "/api/class/Style#tabtextcolor",
- "flags": {},
- "signatures": [
- {
- "code": "tabTextColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 115,
- "character": 4
- }
- ],
- "url": "/api/class/Style#tabtextcolor"
- }
- ]
- },
- "26456": {
- "name": "tabBackgroundColor",
- "type": "Property",
- "url": "/api/class/Style#tabbackgroundcolor",
- "flags": {},
- "signatures": [
- {
- "code": "tabBackgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 116,
- "character": 4
- }
- ],
- "url": "/api/class/Style#tabbackgroundcolor"
- }
- ]
- },
- "26457": {
- "name": "selectedTabTextColor",
- "type": "Property",
- "url": "/api/class/Style#selectedtabtextcolor",
- "flags": {},
- "signatures": [
- {
- "code": "selectedTabTextColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "url": "/api/class/Style#selectedtabtextcolor"
- }
- ]
- },
- "26458": {
- "name": "androidSelectedTabHighlightColor",
- "type": "Property",
- "url": "/api/class/Style#androidselectedtabhighlightcolor",
- "flags": {},
- "signatures": [
- {
- "code": "androidSelectedTabHighlightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 118,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androidselectedtabhighlightcolor"
- }
- ]
- },
- "26459": {
- "name": "separatorColor",
- "type": "Property",
- "url": "/api/class/Style#separatorcolor",
- "flags": {},
- "signatures": [
- {
- "code": "separatorColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 119,
- "character": 4
- }
- ],
- "url": "/api/class/Style#separatorcolor"
- }
- ]
- },
- "26460": {
- "name": "selectedBackgroundColor",
- "type": "Property",
- "url": "/api/class/Style#selectedbackgroundcolor",
- "flags": {},
- "signatures": [
- {
- "code": "selectedBackgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 120,
- "character": 4
- }
- ],
- "url": "/api/class/Style#selectedbackgroundcolor"
- }
- ]
- },
- "26461": {
- "name": "statusBarStyle",
- "type": "Property",
- "url": "/api/class/Style#statusbarstyle",
- "flags": {},
- "signatures": [
- {
- "code": "statusBarStyle: "dark" | "light"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "url": "/api/class/Style#statusbarstyle"
- }
- ]
- },
- "26462": {
- "name": "androidStatusBarBackground",
- "type": "Property",
- "url": "/api/class/Style#androidstatusbarbackground",
- "flags": {},
- "signatures": [
- {
- "code": "androidStatusBarBackground: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 122,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androidstatusbarbackground"
- }
- ]
- },
- "26463": {
- "name": "androidContentInset",
- "type": "Property",
- "url": "/api/class/Style#androidcontentinset",
- "flags": {},
- "signatures": [
- {
- "code": "androidContentInset: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androidcontentinset"
- }
- ]
- },
- "26464": {
- "name": "androidContentInsetLeft",
- "type": "Property",
- "url": "/api/class/Style#androidcontentinsetleft",
- "flags": {},
- "signatures": [
- {
- "code": "androidContentInsetLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androidcontentinsetleft"
- }
- ]
- },
- "26465": {
- "name": "androidContentInsetRight",
- "type": "Property",
- "url": "/api/class/Style#androidcontentinsetright",
- "flags": {},
- "signatures": [
- {
- "code": "androidContentInsetRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "url": "/api/class/Style#androidcontentinsetright"
- }
- ]
- },
- "26466": {
- "name": "flexDirection",
- "type": "Property",
- "url": "/api/class/Style#flexdirection",
- "flags": {},
- "signatures": [
- {
- "code": "flexDirection: FlexDirection",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "url": "/api/class/Style#flexdirection"
- }
- ]
- },
- "26467": {
- "name": "flexWrap",
- "type": "Property",
- "url": "/api/class/Style#flexwrap",
- "flags": {},
- "signatures": [
- {
- "code": "flexWrap: FlexWrap",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "url": "/api/class/Style#flexwrap"
- }
- ]
- },
- "26468": {
- "name": "justifyContent",
- "type": "Property",
- "url": "/api/class/Style#justifycontent",
- "flags": {},
- "signatures": [
- {
- "code": "justifyContent: JustifyContent",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "url": "/api/class/Style#justifycontent"
- }
- ]
- },
- "26469": {
- "name": "alignItems",
- "type": "Property",
- "url": "/api/class/Style#alignitems",
- "flags": {},
- "signatures": [
- {
- "code": "alignItems: AlignItems",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "url": "/api/class/Style#alignitems"
- }
- ]
- },
- "26470": {
- "name": "alignContent",
- "type": "Property",
- "url": "/api/class/Style#aligncontent",
- "flags": {},
- "signatures": [
- {
- "code": "alignContent: AlignContent",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 130,
- "character": 4
- }
- ],
- "url": "/api/class/Style#aligncontent"
- }
- ]
- },
- "26471": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Style#order",
- "flags": {},
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 131,
- "character": 4
- }
- ],
- "url": "/api/class/Style#order"
- }
- ]
- },
- "26472": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Style#flexgrow",
- "flags": {},
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 132,
- "character": 4
- }
- ],
- "url": "/api/class/Style#flexgrow"
- }
- ]
- },
- "26473": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Style#flexshrink",
- "flags": {},
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 133,
- "character": 4
- }
- ],
- "url": "/api/class/Style#flexshrink"
- }
- ]
- },
- "26474": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Style#flexwrapbefore",
- "flags": {},
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 134,
- "character": 4
- }
- ],
- "url": "/api/class/Style#flexwrapbefore"
- }
- ]
- },
- "26475": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Style#alignself",
- "flags": {},
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 135,
- "character": 4
- }
- ],
- "url": "/api/class/Style#alignself"
- }
- ]
- },
- "26476": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Style#accessible",
- "flags": {},
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 136,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessible"
- }
- ]
- },
- "26477": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Style#accessibilityhidden",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 137,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilityhidden"
- }
- ]
- },
- "26478": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Style#accessibilityrole",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 138,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilityrole"
- }
- ]
- },
- "26479": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Style#accessibilitystate",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 139,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilitystate"
- }
- ]
- },
- "26480": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Style#accessibilityliveregion",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilityliveregion"
- }
- ]
- },
- "26481": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Style#accessibilitylanguage",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 141,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilitylanguage"
- }
- ]
- },
- "26482": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Style#accessibilitymediasession",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 142,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilitymediasession"
- }
- ]
- },
- "26483": {
- "name": "accessibilityStep",
- "type": "Property",
- "url": "/api/class/Style#accessibilitystep",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityStep: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 143,
- "character": 4
- }
- ],
- "url": "/api/class/Style#accessibilitystep"
- }
- ]
- },
- "26484": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Style#iosaccessibilityadjustsfontsize",
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 144,
- "character": 4
- }
- ],
- "url": "/api/class/Style#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "26485": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Style#iosaccessibilityminfontscale",
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "url": "/api/class/Style#iosaccessibilityminfontscale"
- }
- ]
- },
- "26486": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Style#iosaccessibilitymaxfontscale",
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 146,
- "character": 4
- }
- ],
- "url": "/api/class/Style#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "26487": {
- "name": "PropertyBag",
- "type": "Property",
- "url": "/api/class/Style#propertybag",
- "flags": {},
- "signatures": [
- {
- "code": "PropertyBag: {\n prototype: {}\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 147,
- "character": 4
- }
- ],
- "url": "/api/class/Style#propertybag"
- }
- ]
- },
- "26497": {
- "name": "viewRef",
- "type": "Property",
- "url": "/api/class/Style#viewref",
- "flags": {},
- "signatures": [
- {
- "code": "viewRef: WeakRef<ViewBase>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "url": "/api/class/Style#viewref"
- }
- ]
- },
- "26498": {
- "name": "view",
- "type": "Accessor",
- "url": "/api/class/Style#view",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get view(): ViewBase",
- "url": "/api/class/Style#view-view-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/styling/style/index.d.ts",
- "line": 156,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "26501": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Style#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Style#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "26504": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Style#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Style#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26508": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Style#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Style#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26512": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Style#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26520": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Style#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26528": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Style#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26536": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Style#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26544": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Style#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Style#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26552": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Style#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Style#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26556": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Style#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Style#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26561": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Style#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Style#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "26564": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Style#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Style#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "26569": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Style#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Style#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Style.md b/content/api/class/Style.md
deleted file mode 100644
index c0ec9b60..00000000
--- a/content/api/class/Style.md
+++ /dev/null
@@ -1,1662 +0,0 @@
----
-title: Style
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Style'
-layout: api
-seo:
- description: Style
----
-
-
-
-
-
-
-checkedChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/switch/index.d.ts",
- "line": 9,
- "character": 15
- }
- ],
- "url": "/api/class/Switch#checkedchangeevent"
- }
- ]
- },
- "26618": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/Switch#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/Switch#layoutchangedevent"
- }
- ]
- },
- "26619": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/Switch#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/Switch#showingmodallyevent"
- }
- ]
- },
- "26620": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/Switch#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/Switch#shownmodallyevent"
- }
- ]
- },
- "26621": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityblurevent"
- }
- ]
- },
- "26622": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityfocusevent"
- }
- ]
- },
- "26623": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityfocuschangedevent"
- }
- ]
- },
- "26624": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/Switch#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/Switch#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "26633": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/Switch#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Switch#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26641": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/Switch#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/Switch#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "26647": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/Switch#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/Switch#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "26651": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#accessibilityperformescapeevent"
- }
- ]
- },
- "26652": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/Switch#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/Switch#loadedevent"
- }
- ]
- },
- "26653": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/Switch#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/Switch#unloadedevent"
- }
- ]
- },
- "26654": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/Switch#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/Switch#createdevent"
- }
- ]
- },
- "26655": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/Switch#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/Switch#disposenativeviewevent"
- }
- ]
- },
- "26656": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/Switch#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/Switch#propertychangeevent"
- }
- ]
- },
- "26657": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Switch#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26665": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Switch#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26673": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Switch#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26681": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Switch#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26689": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Switch#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26697": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Switch#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Switch(): Switch",
- "url": "/api/class/Switch#constructor-new-switch",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "Switch"
- }
- ]
- },
- "26699": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/Switch#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/Switch.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/switch/index.d.ts",
- "line": 14,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/widget/Switch.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/Switch#android"
- }
- ]
- },
- "26700": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/Switch#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UISwitch](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISwitch_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/switch/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UISwitch](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISwitch_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/Switch#ios"
- }
- ]
- },
- "26701": {
- "name": "checked",
- "type": "Property",
- "url": "/api/class/Switch#checked",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if a switch is checked or not."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "checked: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/switch/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if a switch is checked or not."
- }
- ]
- },
- "url": "/api/class/Switch#checked"
- }
- ]
- },
- "26702": {
- "name": "offBackgroundColor",
- "type": "Property",
- "url": "/api/class/Switch#offbackgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the Switch when it is turned off."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "offBackgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/switch/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the Switch when it is turned off."
- }
- ]
- },
- "url": "/api/class/Switch#offbackgroundcolor"
- }
- ]
- },
- "26703": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/Switch#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/Switch#bindingcontext"
- }
- ]
- },
- "26704": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/Switch#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#bordercolor"
- }
- ]
- },
- "26705": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/Switch#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#bordertopcolor"
- }
- ]
- },
- "26706": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/Switch#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderrightcolor"
- }
- ]
- },
- "26707": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/Switch#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderbottomcolor"
- }
- ]
- },
- "26708": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/Switch#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderleftcolor"
- }
- ]
- },
- "26709": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/Switch#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderwidth"
- }
- ]
- },
- "26710": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/Switch#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/Switch#bordertopwidth"
- }
- ]
- },
- "26711": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/Switch#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderrightwidth"
- }
- ]
- },
- "26712": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/Switch#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderbottomwidth"
- }
- ]
- },
- "26713": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/Switch#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderleftwidth"
- }
- ]
- },
- "26714": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/Switch#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderradius"
- }
- ]
- },
- "26715": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/Switch#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Switch#bordertopleftradius"
- }
- ]
- },
- "26716": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/Switch#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Switch#bordertoprightradius"
- }
- ]
- },
- "26717": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/Switch#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderbottomrightradius"
- }
- ]
- },
- "26718": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/Switch#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/Switch#borderbottomleftradius"
- }
- ]
- },
- "26719": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/Switch#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#color"
- }
- ]
- },
- "26720": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/Switch#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/Switch#accessible"
- }
- ]
- },
- "26721": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityhidden"
- }
- ]
- },
- "26722": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityidentifier"
- }
- ]
- },
- "26723": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityrole"
- }
- ]
- },
- "26724": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/Switch#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/Switch#accessibilitystate"
- }
- ]
- },
- "26725": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/Switch#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilitylabel"
- }
- ]
- },
- "26726": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityvalue"
- }
- ]
- },
- "26727": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/Switch#accessibilityhint"
- }
- ]
- },
- "26728": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/Switch#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#accessibilityliveregion"
- }
- ]
- },
- "26729": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/Switch#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/Switch#accessibilitylanguage"
- }
- ]
- },
- "26730": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/Switch#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/Switch#accessibilitymediasession"
- }
- ]
- },
- "26731": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/Switch#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/Switch#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "26732": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/Switch#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Switch#iosaccessibilityminfontscale"
- }
- ]
- },
- "26733": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/Switch#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/Switch#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "26734": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/Switch#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/Switch#androidcontentdescriptionupdated"
- }
- ]
- },
- "26735": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/Switch#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#automationtext"
- }
- ]
- },
- "26736": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/Switch#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/Switch#androidelevation"
- }
- ]
- },
- "26737": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/Switch#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/Switch#androiddynamicelevationoffset"
- }
- ]
- },
- "26738": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/Switch#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/Switch#background"
- }
- ]
- },
- "26739": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/Switch#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/Switch#backgroundcolor"
- }
- ]
- },
- "26740": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/Switch#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/Switch#backgroundimage"
- }
- ]
- },
- "26741": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/Switch#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/Switch#boxshadow"
- }
- ]
- },
- "26742": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/Switch#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/Switch#minwidth"
- }
- ]
- },
- "26743": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/Switch#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/Switch#minheight"
- }
- ]
- },
- "26744": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/Switch#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/Switch#width"
- }
- ]
- },
- "26745": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/Switch#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/Switch#height"
- }
- ]
- },
- "26746": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/Switch#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/Switch#margin"
- }
- ]
- },
- "26747": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/Switch#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/Switch#marginleft"
- }
- ]
- },
- "26748": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/Switch#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/Switch#margintop"
- }
- ]
- },
- "26749": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/Switch#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/Switch#marginright"
- }
- ]
- },
- "26750": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/Switch#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/Switch#marginbottom"
- }
- ]
- },
- "26751": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/Switch#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/Switch#horizontalalignment"
- }
- ]
- },
- "26752": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/Switch#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/Switch#verticalalignment"
- }
- ]
- },
- "26753": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/Switch#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/Switch#visibility"
- }
- ]
- },
- "26754": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/Switch#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/Switch#opacity"
- }
- ]
- },
- "26755": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/Switch#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/Switch#rotate"
- }
- ]
- },
- "26756": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/Switch#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/Switch#rotatex"
- }
- ]
- },
- "26757": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/Switch#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/Switch#rotatey"
- }
- ]
- },
- "26758": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/Switch#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/Switch#perspective"
- }
- ]
- },
- "26759": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/Switch#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Switch#translatex"
- }
- ]
- },
- "26760": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/Switch#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/Switch#translatey"
- }
- ]
- },
- "26761": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/Switch#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Switch#scalex"
- }
- ]
- },
- "26762": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/Switch#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/Switch#scaley"
- }
- ]
- },
- "26763": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/Switch#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Switch#originx"
- }
- ]
- },
- "26764": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/Switch#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/Switch#originy"
- }
- ]
- },
- "26765": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/Switch#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Switch#isenabled"
- }
- ]
- },
- "26766": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/Switch#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/Switch#isuserinteractionenabled"
- }
- ]
- },
- "26767": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/Switch#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Switch#iosoverflowsafearea"
- }
- ]
- },
- "26768": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/Switch#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/Switch#iosoverflowsafeareaenabled"
- }
- ]
- },
- "26769": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/Switch#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/Switch#iosignoresafearea"
- }
- ]
- },
- "26770": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/Switch#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/Switch#islayoutvalid"
- }
- ]
- },
- "26771": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/Switch#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/Switch#csstype"
- }
- ]
- },
- "26772": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/Switch#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#cssclasses"
- }
- ]
- },
- "26773": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/Switch#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#csspseudoclasses"
- }
- ]
- },
- "26774": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/Switch#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Switch#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26778": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/Switch#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/Switch#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26785": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/Switch#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/Switch#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "26787": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/Switch#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/Switch#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "26789": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/Switch#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/Switch#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "26791": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/Switch#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/Switch#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26795": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/Switch#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/Switch#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26801": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/Switch#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/Switch#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26805": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/Switch#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/Switch#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26811": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/Switch#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/Switch#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26813": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/Switch#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/Switch#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "26816": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/Switch#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Switch#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "26824": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/Switch#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Switch#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Switch#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Switch#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/Switch#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/Switch#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "26867": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/Switch#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/Switch#modal"
- }
- ]
- },
- "26868": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/Switch#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/Switch#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "26871": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/Switch#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/Switch#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "26874": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/Switch#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/Switch#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "26881": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/Switch#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/Switch#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "26883": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/Switch#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/Switch#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "26885": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/Switch#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/Switch#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "26888": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/Switch#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/Switch#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "26890": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/Switch#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/Switch#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26902": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/Switch#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/Switch#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "26904": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/Switch#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/Switch#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26906": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/Switch#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/Switch#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "26908": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/Switch#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/Switch#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26914": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/Switch#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/Switch#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26916": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/Switch#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/Switch#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "26918": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/Switch#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/Switch#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "26920": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/Switch#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/Switch#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26926": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/Switch#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/Switch#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26929": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/Switch#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/Switch#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "26932": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/Switch#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/Switch#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27001": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/Switch#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/Switch#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27007": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/Switch#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/Switch#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27012": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/Switch#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/Switch#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27014": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/Switch#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/Switch#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27016": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/Switch#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/Switch#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27019": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/Switch#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/Switch#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "27022": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/Switch#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/Switch#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "27026": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/Switch#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#testid"
- }
- ]
- },
- "27027": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/Switch#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#touchanimation"
- }
- ]
- },
- "27028": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/Switch#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#ignoretouchanimation"
- }
- ]
- },
- "27029": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/Switch#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#touchdelay"
- }
- ]
- },
- "27030": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/Switch#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#closemodalcallback"
- }
- ]
- },
- "27031": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/Switch#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/Switch#transitionid"
- }
- ]
- },
- "27032": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/Switch#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#islayoutvalid"
- }
- ]
- },
- "27033": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/Switch#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/Switch#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27035": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/Switch#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/Switch#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27038": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/Switch#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27046": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/Switch#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27054": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/Switch#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27062": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/Switch#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/Switch#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "27065": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/Switch#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/Switch#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27068": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/Switch#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/Switch#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27072": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/Switch#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/Switch#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27078": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/Switch#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/Switch#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27080": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/Switch#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/Switch#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27082": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/Switch#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/Switch#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27084": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/Switch#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/Switch#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27088": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/Switch#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/Switch#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27092": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/Switch#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/Switch#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "27096": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/Switch#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/Switch#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "27100": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/Switch#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/Switch#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27102": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/Switch#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/Switch#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27108": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/Switch#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/Switch#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27110": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/Switch#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/Switch#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27114": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/Switch#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#domnode"
- }
- ]
- },
- "27115": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/Switch#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#recyclenativeview"
- }
- ]
- },
- "27116": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/Switch#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/Switch#viewcontroller"
- }
- ]
- },
- "27117": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/Switch#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/Switch#nativeviewprotected"
- }
- ]
- },
- "27118": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/Switch#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/Switch#parent"
- }
- ]
- },
- "27119": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/Switch#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/Switch#iscollapsed"
- }
- ]
- },
- "27120": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Switch#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/Switch#id"
- }
- ]
- },
- "27121": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/Switch#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/Switch#classname"
- }
- ]
- },
- "27122": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/Switch#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/Switch#sharedtransitiontag"
- }
- ]
- },
- "27123": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/Switch#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/Switch#sharedtransitionignore"
- }
- ]
- },
- "27124": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/Switch#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#domid"
- }
- ]
- },
- "27125": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/Switch#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#context"
- }
- ]
- },
- "27126": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/Switch#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#isaddedtonativevisualtree"
- }
- ]
- },
- "27127": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/Switch#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#cssstate"
- }
- ]
- },
- "27128": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/Switch#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#stylescope"
- }
- ]
- },
- "27133": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/Switch#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/Switch#suspendnativeupdatescount"
- }
- ]
- },
- "27134": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/Switch#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#isstylescopehost"
- }
- ]
- },
- "27135": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/Switch#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "27136": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/Switch#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#left"
- }
- ]
- },
- "27137": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/Switch#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#top"
- }
- ]
- },
- "27138": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/Switch#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveleft"
- }
- ]
- },
- "27139": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/Switch#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivetop"
- }
- ]
- },
- "27140": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/Switch#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#dock"
- }
- ]
- },
- "27141": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/Switch#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#row"
- }
- ]
- },
- "27142": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/Switch#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#col"
- }
- ]
- },
- "27143": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Switch#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#column"
- }
- ]
- },
- "27144": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/Switch#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#rowspan"
- }
- ]
- },
- "27145": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/Switch#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#colspan"
- }
- ]
- },
- "27146": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/Switch#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#columnspan"
- }
- ]
- },
- "27147": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/Switch#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#order"
- }
- ]
- },
- "27148": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/Switch#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#flexgrow"
- }
- ]
- },
- "27149": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/Switch#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#flexshrink"
- }
- ]
- },
- "27150": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/Switch#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#flexwrapbefore"
- }
- ]
- },
- "27151": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/Switch#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#alignself"
- }
- ]
- },
- "27152": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/Switch#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#oldleft"
- }
- ]
- },
- "27153": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/Switch#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#oldtop"
- }
- ]
- },
- "27154": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/Switch#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#oldright"
- }
- ]
- },
- "27155": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/Switch#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#oldbottom"
- }
- ]
- },
- "27156": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/Switch#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#ignoreflexminwidthheightreset"
- }
- ]
- },
- "27157": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/Switch#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveminwidth"
- }
- ]
- },
- "27158": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/Switch#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveminheight"
- }
- ]
- },
- "27159": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/Switch#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivewidth"
- }
- ]
- },
- "27160": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/Switch#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveheight"
- }
- ]
- },
- "27161": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/Switch#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivemargintop"
- }
- ]
- },
- "27162": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/Switch#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivemarginright"
- }
- ]
- },
- "27163": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/Switch#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivemarginbottom"
- }
- ]
- },
- "27164": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/Switch#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivemarginleft"
- }
- ]
- },
- "27165": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/Switch#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivepaddingtop"
- }
- ]
- },
- "27166": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/Switch#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivepaddingright"
- }
- ]
- },
- "27167": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/Switch#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivepaddingbottom"
- }
- ]
- },
- "27168": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/Switch#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivepaddingleft"
- }
- ]
- },
- "27169": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/Switch#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectivebordertopwidth"
- }
- ]
- },
- "27170": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/Switch#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveborderrightwidth"
- }
- ]
- },
- "27171": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/Switch#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveborderbottomwidth"
- }
- ]
- },
- "27172": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/Switch#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#effectiveborderleftwidth"
- }
- ]
- },
- "27173": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/Switch#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#defaultpaddingtop"
- }
- ]
- },
- "27174": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/Switch#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#defaultpaddingright"
- }
- ]
- },
- "27175": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/Switch#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#defaultpaddingbottom"
- }
- ]
- },
- "27176": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/Switch#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#defaultpaddingleft"
- }
- ]
- },
- "27177": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/Switch#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/Switch#ispaddingrelative"
- }
- ]
- },
- "27179": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/Switch#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/Switch#reusable"
- }
- ]
- },
- "27180": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/Switch#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/Switch#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "27184": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/Switch#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/Switch#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "27188": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/Switch#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/Switch#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27190": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/Switch#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/Switch#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "27194": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/Switch#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/Switch#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27196": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/Switch#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/Switch#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27200": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/Switch#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/Switch#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "27204": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/Switch#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/Switch#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "27208": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/Switch#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/Switch#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "27210": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/Switch#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/Switch#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27212": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/Switch#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/Switch#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27216": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/Switch#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/Switch#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27218": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/Switch#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/Switch#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27220": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/Switch#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Switch#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27223": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Switch#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/Switch#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27226": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/Switch#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/Switch#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "27232": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/Switch#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/Switch#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27234": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/Switch#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/Switch#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27236": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/Switch#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/Switch#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27239": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/Switch#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/Switch#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27242": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/Switch#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/Switch#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27246": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/Switch#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/Switch#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27249": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/Switch#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Switch#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27253": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/Switch#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/Switch#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27257": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/Switch#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/Switch#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27260": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/Switch#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/Switch#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27262": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/Switch#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/Switch#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27265": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/Switch#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/Switch#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27268": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/Switch#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/Switch#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27271": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/Switch#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/Switch#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "27273": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/Switch#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/Switch#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27275": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/Switch#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/Switch#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27277": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/Switch#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/Switch#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27282": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/Switch#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/Switch#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27285": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/Switch#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/Switch#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27288": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/Switch#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/Switch#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27291": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/Switch#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/Switch#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "27294": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Switch#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/Switch#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27298": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/Switch#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/Switch#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27301": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/Switch#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/Switch#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27305": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/Switch#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/Switch#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27308": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/Switch#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/Switch#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27311": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/Switch#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/Switch#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27313": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/Switch#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/Switch#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27317": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/Switch#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/Switch#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27320": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/Switch#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/Switch#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27322": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/Switch#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/Switch#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27325": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/Switch#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/Switch#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "27328": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/Switch#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/Switch#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27332": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/Switch#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/Switch#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27340": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/Switch#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/Switch#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27344": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/Switch#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/Switch#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27349": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/Switch#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/Switch#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27352": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/Switch#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/Switch#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "27357": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/Switch#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/Switch#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Switch.md b/content/api/class/Switch.md
deleted file mode 100644
index a38f9685..00000000
--- a/content/api/class/Switch.md
+++ /dev/null
@@ -1,120 +0,0 @@
----
-title: Switch
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Switch'
-layout: api
-seo:
- description: "Represents a switch component."
----
-
-
-
-
-
-
-selectedIndexChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 145,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to the selectedIndexChanged event."
- }
- ]
- },
- "url": "/api/class/TabView#selectedindexchangedevent"
- }
- ]
- },
- "27362": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/TabView#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/TabView#layoutchangedevent"
- }
- ]
- },
- "27363": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/TabView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/TabView#showingmodallyevent"
- }
- ]
- },
- "27364": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/TabView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/TabView#shownmodallyevent"
- }
- ]
- },
- "27365": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityblurevent"
- }
- ]
- },
- "27366": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityfocusevent"
- }
- ]
- },
- "27367": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityfocuschangedevent"
- }
- ]
- },
- "27368": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/TabView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/TabView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "27377": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/TabView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TabView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27385": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/TabView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/TabView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "27391": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/TabView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/TabView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "27395": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#accessibilityperformescapeevent"
- }
- ]
- },
- "27396": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/TabView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/TabView#loadedevent"
- }
- ]
- },
- "27397": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/TabView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/TabView#unloadedevent"
- }
- ]
- },
- "27398": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/TabView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/TabView#createdevent"
- }
- ]
- },
- "27399": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/TabView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/TabView#disposenativeviewevent"
- }
- ]
- },
- "27400": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/TabView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/TabView#propertychangeevent"
- }
- ]
- },
- "27401": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TabView#on-3",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#on-3-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27409": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TabView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27417": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TabView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27425": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TabView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27433": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TabView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27441": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TabView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TabView(): TabView",
- "url": "/api/class/TabView#constructor-new-tabview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TabView"
- }
- ]
- },
- "27443": {
- "name": "items",
- "type": "Property",
- "url": "/api/class/TabView#items",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the items of the TabView."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "items: TabViewItem[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the items of the TabView."
- }
- ]
- },
- "url": "/api/class/TabView#items"
- }
- ]
- },
- "27444": {
- "name": "selectedIndex",
- "type": "Property",
- "url": "/api/class/TabView#selectedindex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selectedIndex of the TabView."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "selectedIndex: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the selectedIndex of the TabView."
- }
- ]
- },
- "url": "/api/class/TabView#selectedindex"
- }
- ]
- },
- "27445": {
- "name": "tabTextFontSize",
- "type": "Property",
- "url": "/api/class/TabView#tabtextfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font size of the tabs titles."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "tabTextFontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the font size of the tabs titles."
- }
- ]
- },
- "url": "/api/class/TabView#tabtextfontsize"
- }
- ]
- },
- "27446": {
- "name": "tabTextColor",
- "type": "Property",
- "url": "/api/class/TabView#tabtextcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text color of the tabs titles."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "tabTextColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text color of the tabs titles."
- }
- ]
- },
- "url": "/api/class/TabView#tabtextcolor"
- }
- ]
- },
- "27447": {
- "name": "tabBackgroundColor",
- "type": "Property",
- "url": "/api/class/TabView#tabbackgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the tabs."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "tabBackgroundColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the tabs."
- }
- ]
- },
- "url": "/api/class/TabView#tabbackgroundcolor"
- }
- ]
- },
- "27448": {
- "name": "selectedTabTextColor",
- "type": "Property",
- "url": "/api/class/TabView#selectedtabtextcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text color of the selected tab title."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "selectedTabTextColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text color of the selected tab title."
- }
- ]
- },
- "url": "/api/class/TabView#selectedtabtextcolor"
- }
- ]
- },
- "27449": {
- "name": "androidSelectedTabHighlightColor",
- "type": "Property",
- "url": "/api/class/TabView#androidselectedtabhighlightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the horizontal line drawn below the currently selected tab on Android."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidSelectedTabHighlightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the horizontal line drawn below the currently selected tab on Android."
- }
- ]
- },
- "url": "/api/class/TabView#androidselectedtabhighlightcolor"
- }
- ]
- },
- "27450": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/TabView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/support/v4/view/ViewPager.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 99,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/support/v4/view/ViewPager.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/TabView#android"
- }
- ]
- },
- "27451": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/TabView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UITabBarController](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITabBarController_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 104,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UITabBarController](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITabBarController_Class/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/TabView#ios"
- }
- ]
- },
- "27452": {
- "name": "iosIconRenderingMode",
- "type": "Property",
- "url": "/api/class/TabView#iosiconrenderingmode",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIImageRenderingMode of the tab icons in iOS. Defaults to \"automatic\"\nValid values are:\n - automatic\n - alwaysOriginal\n - alwaysTemplate"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosIconRenderingMode: "automatic" | "alwaysOriginal" | "alwaysTemplate"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 113,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIImageRenderingMode of the tab icons in iOS. Defaults to \"automatic\"\nValid values are:\n - automatic\n - alwaysOriginal\n - alwaysTemplate"
- }
- ]
- },
- "url": "/api/class/TabView#iosiconrenderingmode"
- }
- ]
- },
- "27453": {
- "name": "androidIconRenderingMode",
- "type": "Property",
- "url": "/api/class/TabView#androidiconrenderingmode",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rendering mode of tab icons on Android. Defaults to \"original\"\nValid values are:\n - alwaysOriginal\n - alwaysTemplate"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidIconRenderingMode: "alwaysOriginal" | "alwaysTemplate"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 121,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rendering mode of tab icons on Android. Defaults to \"original\"\nValid values are:\n - alwaysOriginal\n - alwaysTemplate"
- }
- ]
- },
- "url": "/api/class/TabView#androidiconrenderingmode"
- }
- ]
- },
- "27454": {
- "name": "androidOffscreenTabLimit",
- "type": "Property",
- "url": "/api/class/TabView#androidoffscreentablimit",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the number of tabs that should be retained to either side of the current tab in the view hierarchy in an idle state.\nTabs beyond this limit will be recreated from the TabView when needed."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidOffscreenTabLimit: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 127,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the number of tabs that should be retained to either side of the current tab in the view hierarchy in an idle state.\nTabs beyond this limit will be recreated from the TabView when needed."
- }
- ]
- },
- "url": "/api/class/TabView#androidoffscreentablimit"
- }
- ]
- },
- "27455": {
- "name": "androidTabsPosition",
- "type": "Property",
- "url": "/api/class/TabView#androidtabsposition",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the tabs vertical position.\nValid values are:\n - top\n - bottom"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidTabsPosition: "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 135,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the tabs vertical position.\nValid values are:\n - top\n - bottom"
- }
- ]
- },
- "url": "/api/class/TabView#androidtabsposition"
- }
- ]
- },
- "27456": {
- "name": "androidSwipeEnabled",
- "type": "Property",
- "url": "/api/class/TabView#androidswipeenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether swipe gesture is enabled for Android."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidSwipeEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 140,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether swipe gesture is enabled for Android."
- }
- ]
- },
- "url": "/api/class/TabView#androidswipeenabled"
- }
- ]
- },
- "27457": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TabView#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 153,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(\n event: "selectedIndexChanged",\n callback: (args: SelectedIndexChangedEventData) => void,\n thisArg?: any\n): void",
- "url": "/api/class/TabView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 158,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when the selected index changes."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"selectedIndexChanged\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: SelectedIndexChangedEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27472": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/TabView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/TabView#bindingcontext"
- }
- ]
- },
- "27473": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/TabView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#bordercolor"
- }
- ]
- },
- "27474": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/TabView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#bordertopcolor"
- }
- ]
- },
- "27475": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/TabView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderrightcolor"
- }
- ]
- },
- "27476": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/TabView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderbottomcolor"
- }
- ]
- },
- "27477": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/TabView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderleftcolor"
- }
- ]
- },
- "27478": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/TabView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderwidth"
- }
- ]
- },
- "27479": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/TabView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/TabView#bordertopwidth"
- }
- ]
- },
- "27480": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/TabView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderrightwidth"
- }
- ]
- },
- "27481": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/TabView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderbottomwidth"
- }
- ]
- },
- "27482": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/TabView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderleftwidth"
- }
- ]
- },
- "27483": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/TabView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderradius"
- }
- ]
- },
- "27484": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/TabView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TabView#bordertopleftradius"
- }
- ]
- },
- "27485": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/TabView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TabView#bordertoprightradius"
- }
- ]
- },
- "27486": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/TabView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderbottomrightradius"
- }
- ]
- },
- "27487": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/TabView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TabView#borderbottomleftradius"
- }
- ]
- },
- "27488": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/TabView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#color"
- }
- ]
- },
- "27489": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/TabView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/TabView#accessible"
- }
- ]
- },
- "27490": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityhidden"
- }
- ]
- },
- "27491": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityidentifier"
- }
- ]
- },
- "27492": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityrole"
- }
- ]
- },
- "27493": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/TabView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TabView#accessibilitystate"
- }
- ]
- },
- "27494": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/TabView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilitylabel"
- }
- ]
- },
- "27495": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityvalue"
- }
- ]
- },
- "27496": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/TabView#accessibilityhint"
- }
- ]
- },
- "27497": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/TabView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#accessibilityliveregion"
- }
- ]
- },
- "27498": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/TabView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/TabView#accessibilitylanguage"
- }
- ]
- },
- "27499": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/TabView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/TabView#accessibilitymediasession"
- }
- ]
- },
- "27500": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/TabView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/TabView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "27501": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/TabView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TabView#iosaccessibilityminfontscale"
- }
- ]
- },
- "27502": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/TabView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TabView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "27503": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/TabView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/TabView#androidcontentdescriptionupdated"
- }
- ]
- },
- "27504": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/TabView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#automationtext"
- }
- ]
- },
- "27505": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/TabView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/TabView#androidelevation"
- }
- ]
- },
- "27506": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/TabView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/TabView#androiddynamicelevationoffset"
- }
- ]
- },
- "27507": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/TabView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/TabView#background"
- }
- ]
- },
- "27508": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/TabView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/TabView#backgroundcolor"
- }
- ]
- },
- "27509": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/TabView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/TabView#backgroundimage"
- }
- ]
- },
- "27510": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/TabView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/TabView#boxshadow"
- }
- ]
- },
- "27511": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/TabView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/TabView#minwidth"
- }
- ]
- },
- "27512": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/TabView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/TabView#minheight"
- }
- ]
- },
- "27513": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/TabView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/TabView#width"
- }
- ]
- },
- "27514": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/TabView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/TabView#height"
- }
- ]
- },
- "27515": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/TabView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/TabView#margin"
- }
- ]
- },
- "27516": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/TabView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/TabView#marginleft"
- }
- ]
- },
- "27517": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/TabView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/TabView#margintop"
- }
- ]
- },
- "27518": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/TabView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/TabView#marginright"
- }
- ]
- },
- "27519": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/TabView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/TabView#marginbottom"
- }
- ]
- },
- "27520": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/TabView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/TabView#horizontalalignment"
- }
- ]
- },
- "27521": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/TabView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/TabView#verticalalignment"
- }
- ]
- },
- "27522": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/TabView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/TabView#visibility"
- }
- ]
- },
- "27523": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/TabView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/TabView#opacity"
- }
- ]
- },
- "27524": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/TabView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/TabView#rotate"
- }
- ]
- },
- "27525": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/TabView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/TabView#rotatex"
- }
- ]
- },
- "27526": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/TabView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/TabView#rotatey"
- }
- ]
- },
- "27527": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/TabView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/TabView#perspective"
- }
- ]
- },
- "27528": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/TabView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TabView#translatex"
- }
- ]
- },
- "27529": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/TabView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TabView#translatey"
- }
- ]
- },
- "27530": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/TabView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TabView#scalex"
- }
- ]
- },
- "27531": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/TabView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TabView#scaley"
- }
- ]
- },
- "27532": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/TabView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TabView#originx"
- }
- ]
- },
- "27533": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/TabView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TabView#originy"
- }
- ]
- },
- "27534": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/TabView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TabView#isenabled"
- }
- ]
- },
- "27535": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/TabView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TabView#isuserinteractionenabled"
- }
- ]
- },
- "27536": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/TabView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TabView#iosoverflowsafearea"
- }
- ]
- },
- "27537": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/TabView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/TabView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "27538": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/TabView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TabView#iosignoresafearea"
- }
- ]
- },
- "27539": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/TabView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/TabView#islayoutvalid"
- }
- ]
- },
- "27540": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/TabView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/TabView#csstype"
- }
- ]
- },
- "27541": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/TabView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#cssclasses"
- }
- ]
- },
- "27542": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/TabView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#csspseudoclasses"
- }
- ]
- },
- "27543": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/TabView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TabView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27547": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/TabView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/TabView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27554": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/TabView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/TabView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "27556": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/TabView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/TabView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "27558": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/TabView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/TabView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "27560": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/TabView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TabView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27564": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/TabView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TabView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27570": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/TabView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/TabView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27574": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/TabView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/TabView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27580": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/TabView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/TabView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27582": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/TabView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/TabView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "27585": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TabView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TabView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "27593": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/TabView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/TabView#modal"
- }
- ]
- },
- "27594": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/TabView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/TabView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "27597": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/TabView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/TabView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "27600": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/TabView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/TabView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "27607": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/TabView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/TabView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "27609": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/TabView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/TabView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "27611": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/TabView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/TabView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "27614": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/TabView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/TabView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "27616": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/TabView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/TabView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27628": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/TabView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/TabView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "27630": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/TabView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/TabView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27632": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/TabView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/TabView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "27634": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/TabView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/TabView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27640": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/TabView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/TabView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27642": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/TabView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/TabView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27644": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/TabView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/TabView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27646": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/TabView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/TabView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27652": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/TabView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/TabView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27655": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/TabView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/TabView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27658": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/TabView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/TabView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27727": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/TabView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/TabView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27733": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/TabView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/TabView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27738": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/TabView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/TabView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27740": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/TabView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/TabView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27742": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/TabView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/TabView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "27745": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/TabView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/TabView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "27748": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/TabView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/TabView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "27752": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/TabView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#testid"
- }
- ]
- },
- "27753": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/TabView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#touchanimation"
- }
- ]
- },
- "27754": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/TabView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#ignoretouchanimation"
- }
- ]
- },
- "27755": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/TabView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#touchdelay"
- }
- ]
- },
- "27756": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/TabView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#closemodalcallback"
- }
- ]
- },
- "27757": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/TabView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/TabView#transitionid"
- }
- ]
- },
- "27758": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/TabView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#islayoutvalid"
- }
- ]
- },
- "27759": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/TabView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/TabView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27761": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/TabView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/TabView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27764": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/TabView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27772": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TabView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27780": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TabView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27788": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/TabView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/TabView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "27791": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/TabView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/TabView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27794": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/TabView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/TabView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27798": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/TabView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/TabView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27804": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/TabView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/TabView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27806": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/TabView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/TabView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27808": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/TabView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/TabView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27810": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/TabView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/TabView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27814": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/TabView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/TabView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27818": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/TabView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/TabView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "27822": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/TabView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/TabView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "27826": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/TabView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/TabView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27828": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/TabView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/TabView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27834": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/TabView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/TabView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27836": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/TabView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/TabView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27840": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/TabView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#domnode"
- }
- ]
- },
- "27841": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/TabView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#recyclenativeview"
- }
- ]
- },
- "27842": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/TabView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/TabView#viewcontroller"
- }
- ]
- },
- "27843": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/TabView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/TabView#nativeviewprotected"
- }
- ]
- },
- "27844": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/TabView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/TabView#parent"
- }
- ]
- },
- "27845": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/TabView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/TabView#iscollapsed"
- }
- ]
- },
- "27846": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/TabView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/TabView#id"
- }
- ]
- },
- "27847": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/TabView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/TabView#classname"
- }
- ]
- },
- "27848": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/TabView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/TabView#sharedtransitiontag"
- }
- ]
- },
- "27849": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/TabView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/TabView#sharedtransitionignore"
- }
- ]
- },
- "27850": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/TabView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#domid"
- }
- ]
- },
- "27851": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/TabView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#context"
- }
- ]
- },
- "27852": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/TabView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#isaddedtonativevisualtree"
- }
- ]
- },
- "27853": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/TabView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#cssstate"
- }
- ]
- },
- "27854": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/TabView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#stylescope"
- }
- ]
- },
- "27859": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/TabView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/TabView#suspendnativeupdatescount"
- }
- ]
- },
- "27860": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/TabView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#isstylescopehost"
- }
- ]
- },
- "27861": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/TabView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "27862": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/TabView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#left"
- }
- ]
- },
- "27863": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/TabView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#top"
- }
- ]
- },
- "27864": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/TabView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveleft"
- }
- ]
- },
- "27865": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/TabView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivetop"
- }
- ]
- },
- "27866": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/TabView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#dock"
- }
- ]
- },
- "27867": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/TabView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#row"
- }
- ]
- },
- "27868": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/TabView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#col"
- }
- ]
- },
- "27869": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/TabView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#column"
- }
- ]
- },
- "27870": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/TabView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#rowspan"
- }
- ]
- },
- "27871": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/TabView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#colspan"
- }
- ]
- },
- "27872": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/TabView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#columnspan"
- }
- ]
- },
- "27873": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/TabView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#order"
- }
- ]
- },
- "27874": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/TabView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#flexgrow"
- }
- ]
- },
- "27875": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/TabView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#flexshrink"
- }
- ]
- },
- "27876": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/TabView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#flexwrapbefore"
- }
- ]
- },
- "27877": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/TabView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#alignself"
- }
- ]
- },
- "27878": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/TabView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#oldleft"
- }
- ]
- },
- "27879": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/TabView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#oldtop"
- }
- ]
- },
- "27880": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/TabView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#oldright"
- }
- ]
- },
- "27881": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/TabView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#oldbottom"
- }
- ]
- },
- "27882": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/TabView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "27883": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/TabView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveminwidth"
- }
- ]
- },
- "27884": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/TabView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveminheight"
- }
- ]
- },
- "27885": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/TabView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivewidth"
- }
- ]
- },
- "27886": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/TabView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveheight"
- }
- ]
- },
- "27887": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/TabView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivemargintop"
- }
- ]
- },
- "27888": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/TabView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivemarginright"
- }
- ]
- },
- "27889": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/TabView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivemarginbottom"
- }
- ]
- },
- "27890": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/TabView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivemarginleft"
- }
- ]
- },
- "27891": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/TabView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivepaddingtop"
- }
- ]
- },
- "27892": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/TabView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivepaddingright"
- }
- ]
- },
- "27893": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/TabView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivepaddingbottom"
- }
- ]
- },
- "27894": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/TabView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivepaddingleft"
- }
- ]
- },
- "27895": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/TabView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectivebordertopwidth"
- }
- ]
- },
- "27896": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/TabView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveborderrightwidth"
- }
- ]
- },
- "27897": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/TabView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveborderbottomwidth"
- }
- ]
- },
- "27898": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/TabView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#effectiveborderleftwidth"
- }
- ]
- },
- "27899": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/TabView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#defaultpaddingtop"
- }
- ]
- },
- "27900": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/TabView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#defaultpaddingright"
- }
- ]
- },
- "27901": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/TabView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#defaultpaddingbottom"
- }
- ]
- },
- "27902": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/TabView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#defaultpaddingleft"
- }
- ]
- },
- "27903": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/TabView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TabView#ispaddingrelative"
- }
- ]
- },
- "27905": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/TabView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/TabView#reusable"
- }
- ]
- },
- "27906": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/TabView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/TabView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "27910": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/TabView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/TabView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "27914": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/TabView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/TabView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27916": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/TabView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/TabView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "27920": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/TabView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/TabView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27922": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/TabView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/TabView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "27926": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/TabView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/TabView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "27930": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/TabView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/TabView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "27934": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/TabView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/TabView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "27936": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/TabView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/TabView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27938": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/TabView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/TabView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27942": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/TabView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/TabView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27944": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/TabView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/TabView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27946": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/TabView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TabView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27949": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TabView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TabView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27952": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/TabView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/TabView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "27958": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/TabView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/TabView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27960": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/TabView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/TabView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "27962": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/TabView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/TabView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27965": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/TabView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/TabView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27968": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/TabView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/TabView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27972": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/TabView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/TabView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27975": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/TabView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TabView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27979": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/TabView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TabView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27983": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/TabView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/TabView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27986": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/TabView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/TabView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "27988": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/TabView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/TabView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27991": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/TabView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/TabView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27994": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/TabView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/TabView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "27997": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/TabView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/TabView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "27999": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/TabView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/TabView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28001": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/TabView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/TabView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28003": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/TabView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/TabView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28008": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/TabView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/TabView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28011": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/TabView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/TabView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28014": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/TabView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/TabView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28017": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/TabView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/TabView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "28020": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TabView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/TabView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28024": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TabView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/TabView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28027": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/TabView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/TabView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28031": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/TabView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/TabView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28034": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/TabView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/TabView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28037": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TabView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/TabView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28039": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/TabView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/TabView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "28043": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/TabView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/TabView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28046": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/TabView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/TabView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28048": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/TabView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/TabView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28051": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/TabView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/TabView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "28054": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/TabView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/TabView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28058": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TabView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28066": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/TabView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/TabView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28070": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/TabView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/TabView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28075": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/TabView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/TabView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28078": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/TabView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/TabView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "28083": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/TabView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/TabView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TabView.md b/content/api/class/TabView.md
deleted file mode 100644
index 27e879f9..00000000
--- a/content/api/class/TabView.md
+++ /dev/null
@@ -1,276 +0,0 @@
----
-title: TabView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TabView'
-layout: api
-seo:
- description: "Represents a tab view."
----
-
-
-
-
-
-
-loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/TabViewItem#loadedevent"
- }
- ]
- },
- "28088": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/TabViewItem#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/TabViewItem#unloadedevent"
- }
- ]
- },
- "28089": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/TabViewItem#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/TabViewItem#createdevent"
- }
- ]
- },
- "28090": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/TabViewItem#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/TabViewItem#disposenativeviewevent"
- }
- ]
- },
- "28091": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/TabViewItem#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/TabViewItem#propertychangeevent"
- }
- ]
- },
- "28092": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TabViewItem#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28100": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TabViewItem#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28108": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TabViewItem#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28116": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TabViewItem#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28124": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TabViewItem#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28132": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TabViewItem#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TabViewItem(): TabViewItem",
- "url": "/api/class/TabViewItem#constructor-new-tabviewitem",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "TabViewItem"
- }
- ]
- },
- "28134": {
- "name": "title",
- "type": "Property",
- "url": "/api/class/TabViewItem#title",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the title of the TabViewItem."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "title: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 19,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the title of the TabViewItem."
- }
- ]
- },
- "url": "/api/class/TabViewItem#title"
- }
- ]
- },
- "28135": {
- "name": "view",
- "type": "Property",
- "url": "/api/class/TabViewItem#view",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the view of the TabViewItem."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "view: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 24,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the view of the TabViewItem."
- }
- ]
- },
- "url": "/api/class/TabViewItem#view"
- }
- ]
- },
- "28136": {
- "name": "iconSource",
- "type": "Property",
- "url": "/api/class/TabViewItem#iconsource",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the icon source of the TabViewItem. This could either be a a file name or resource id."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "iconSource: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 29,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the icon source of the TabViewItem. This could either be a a file name or resource id."
- }
- ]
- },
- "url": "/api/class/TabViewItem#iconsource"
- }
- ]
- },
- "28137": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/TabViewItem#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text transform of the tab titles."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/tab-view/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text transform of the tab titles."
- }
- ]
- },
- "url": "/api/class/TabViewItem#texttransform"
- }
- ]
- },
- "28139": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/TabViewItem#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#domnode"
- }
- ]
- },
- "28140": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/TabViewItem#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#recyclenativeview"
- }
- ]
- },
- "28141": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/TabViewItem#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/TabViewItem#viewcontroller"
- }
- ]
- },
- "28142": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/TabViewItem#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#bindingcontext"
- }
- ]
- },
- "28143": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/TabViewItem#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/TabViewItem#nativeviewprotected"
- }
- ]
- },
- "28144": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/TabViewItem#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/TabViewItem#parent"
- }
- ]
- },
- "28145": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/TabViewItem#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/TabViewItem#iscollapsed"
- }
- ]
- },
- "28146": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/TabViewItem#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/TabViewItem#id"
- }
- ]
- },
- "28147": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/TabViewItem#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/TabViewItem#classname"
- }
- ]
- },
- "28148": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/TabViewItem#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/TabViewItem#sharedtransitiontag"
- }
- ]
- },
- "28149": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/TabViewItem#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/TabViewItem#sharedtransitionignore"
- }
- ]
- },
- "28150": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/TabViewItem#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#domid"
- }
- ]
- },
- "28151": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/TabViewItem#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#context"
- }
- ]
- },
- "28152": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/TabViewItem#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#isaddedtonativevisualtree"
- }
- ]
- },
- "28153": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/TabViewItem#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#cssstate"
- }
- ]
- },
- "28154": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/TabViewItem#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#stylescope"
- }
- ]
- },
- "28159": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/TabViewItem#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/TabViewItem#suspendnativeupdatescount"
- }
- ]
- },
- "28160": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/TabViewItem#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#isstylescopehost"
- }
- ]
- },
- "28161": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/TabViewItem#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "28162": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/TabViewItem#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#left"
- }
- ]
- },
- "28163": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/TabViewItem#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#top"
- }
- ]
- },
- "28164": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveleft"
- }
- ]
- },
- "28165": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivetop"
- }
- ]
- },
- "28166": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/TabViewItem#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#dock"
- }
- ]
- },
- "28167": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/TabViewItem#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#row"
- }
- ]
- },
- "28168": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/TabViewItem#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#col"
- }
- ]
- },
- "28169": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/TabViewItem#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#column"
- }
- ]
- },
- "28170": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/TabViewItem#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#rowspan"
- }
- ]
- },
- "28171": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/TabViewItem#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#colspan"
- }
- ]
- },
- "28172": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/TabViewItem#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#columnspan"
- }
- ]
- },
- "28173": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/TabViewItem#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#order"
- }
- ]
- },
- "28174": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/TabViewItem#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#flexgrow"
- }
- ]
- },
- "28175": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/TabViewItem#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#flexshrink"
- }
- ]
- },
- "28176": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/TabViewItem#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#flexwrapbefore"
- }
- ]
- },
- "28177": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/TabViewItem#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#alignself"
- }
- ]
- },
- "28178": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/TabViewItem#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#oldleft"
- }
- ]
- },
- "28179": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/TabViewItem#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#oldtop"
- }
- ]
- },
- "28180": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/TabViewItem#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#oldright"
- }
- ]
- },
- "28181": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/TabViewItem#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#oldbottom"
- }
- ]
- },
- "28182": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/TabViewItem#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#ignoreflexminwidthheightreset"
- }
- ]
- },
- "28183": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveminwidth"
- }
- ]
- },
- "28184": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveminheight"
- }
- ]
- },
- "28185": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivewidth"
- }
- ]
- },
- "28186": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveheight"
- }
- ]
- },
- "28187": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivemargintop"
- }
- ]
- },
- "28188": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivemarginright"
- }
- ]
- },
- "28189": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivemarginbottom"
- }
- ]
- },
- "28190": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivemarginleft"
- }
- ]
- },
- "28191": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivepaddingtop"
- }
- ]
- },
- "28192": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivepaddingright"
- }
- ]
- },
- "28193": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivepaddingbottom"
- }
- ]
- },
- "28194": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivepaddingleft"
- }
- ]
- },
- "28195": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectivebordertopwidth"
- }
- ]
- },
- "28196": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveborderrightwidth"
- }
- ]
- },
- "28197": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveborderbottomwidth"
- }
- ]
- },
- "28198": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/TabViewItem#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#effectiveborderleftwidth"
- }
- ]
- },
- "28199": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/TabViewItem#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#defaultpaddingtop"
- }
- ]
- },
- "28200": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/TabViewItem#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#defaultpaddingright"
- }
- ]
- },
- "28201": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/TabViewItem#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#defaultpaddingbottom"
- }
- ]
- },
- "28202": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/TabViewItem#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#defaultpaddingleft"
- }
- ]
- },
- "28203": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/TabViewItem#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#ispaddingrelative"
- }
- ]
- },
- "28205": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/TabViewItem#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/TabViewItem#reusable"
- }
- ]
- },
- "28206": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/TabViewItem#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "28210": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/TabViewItem#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "28214": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/TabViewItem#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "28216": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/TabViewItem#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "28220": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#android",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/TabViewItem#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 280,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "28222": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#ios",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/TabViewItem#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 281,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "28224": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/TabViewItem#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "28226": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/TabViewItem#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "28230": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/TabViewItem#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/TabViewItem#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "28234": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/TabViewItem#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/TabViewItem#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "28238": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/TabViewItem#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/TabViewItem#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "28240": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/TabViewItem#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/TabViewItem#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28242": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/TabViewItem#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/TabViewItem#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28246": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/TabViewItem#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/TabViewItem#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28248": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/TabViewItem#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/TabViewItem#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28250": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/TabViewItem#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/TabViewItem#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28252": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/TabViewItem#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TabViewItem#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28255": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TabViewItem#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TabViewItem#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28258": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/TabViewItem#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/TabViewItem#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "28264": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/TabViewItem#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/TabViewItem#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28266": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/TabViewItem#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/TabViewItem#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28268": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/TabViewItem#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#cssclasses"
- }
- ]
- },
- "28269": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/TabViewItem#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/TabViewItem#csspseudoclasses"
- }
- ]
- },
- "28270": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/TabViewItem#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/TabViewItem#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28273": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/TabViewItem#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/TabViewItem#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28276": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/TabViewItem#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/TabViewItem#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28280": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/TabViewItem#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/TabViewItem#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28283": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/TabViewItem#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/TabViewItem#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28285": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/TabViewItem#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/TabViewItem#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28291": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/TabViewItem#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TabViewItem#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28295": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/TabViewItem#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TabViewItem#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28299": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/TabViewItem#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/TabViewItem#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28302": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/TabViewItem#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/TabViewItem#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "28304": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/TabViewItem#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/TabViewItem#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28307": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/TabViewItem#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/TabViewItem#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28310": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/TabViewItem#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/TabViewItem#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28313": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/TabViewItem#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/TabViewItem#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "28315": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/TabViewItem#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/TabViewItem#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28317": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/TabViewItem#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/TabViewItem#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28319": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/TabViewItem#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/TabViewItem#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28321": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/TabViewItem#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/TabViewItem#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28324": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/TabViewItem#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/TabViewItem#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28329": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/TabViewItem#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/TabViewItem#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28332": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/TabViewItem#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/TabViewItem#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28335": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/TabViewItem#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/TabViewItem#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28338": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/TabViewItem#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/TabViewItem#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "28341": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TabViewItem#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/TabViewItem#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28345": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TabViewItem#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/TabViewItem#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28348": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/TabViewItem#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/TabViewItem#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28351": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/TabViewItem#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/TabViewItem#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28355": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/TabViewItem#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/TabViewItem#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28358": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/TabViewItem#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/TabViewItem#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28361": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TabViewItem#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/TabViewItem#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28363": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/TabViewItem#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/TabViewItem#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "28367": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/TabViewItem#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/TabViewItem#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28370": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/TabViewItem#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/TabViewItem#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/TabViewItem#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "28377": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/TabViewItem#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/TabViewItem#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28380": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/TabViewItem#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/TabViewItem#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28382": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/TabViewItem#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/TabViewItem#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28385": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/TabViewItem#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/TabViewItem#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "28388": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/TabViewItem#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/TabViewItem#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28392": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TabViewItem#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28400": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TabViewItem#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28408": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TabViewItem#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28416": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TabViewItem#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28424": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TabViewItem#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TabViewItem#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28432": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/TabViewItem#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/TabViewItem#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28436": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/TabViewItem#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/TabViewItem#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28441": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/TabViewItem#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/TabViewItem#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28444": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/TabViewItem#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/TabViewItem#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "28449": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/TabViewItem#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/TabViewItem#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TabViewItem.md b/content/api/class/TabViewItem.md
deleted file mode 100644
index 41b6aed1..00000000
--- a/content/api/class/TabViewItem.md
+++ /dev/null
@@ -1,106 +0,0 @@
----
-title: TabViewItem
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TabViewItem'
-layout: api
-seo:
- description: "Represents a tab view entry."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/TextBase#layoutchangedevent"
- }
- ]
- },
- "28454": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/TextBase#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/TextBase#showingmodallyevent"
- }
- ]
- },
- "28455": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/TextBase#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/TextBase#shownmodallyevent"
- }
- ]
- },
- "28456": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityblurevent"
- }
- ]
- },
- "28457": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityfocusevent"
- }
- ]
- },
- "28458": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityfocuschangedevent"
- }
- ]
- },
- "28459": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/TextBase#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/TextBase#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "28468": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/TextBase#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TextBase#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28476": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/TextBase#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/TextBase#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "28482": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/TextBase#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/TextBase#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "28486": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#accessibilityperformescapeevent"
- }
- ]
- },
- "28487": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/TextBase#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/TextBase#loadedevent"
- }
- ]
- },
- "28488": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/TextBase#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/TextBase#unloadedevent"
- }
- ]
- },
- "28489": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/TextBase#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/TextBase#createdevent"
- }
- ]
- },
- "28490": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/TextBase#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/TextBase#disposenativeviewevent"
- }
- ]
- },
- "28491": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/TextBase#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/TextBase#propertychangeevent"
- }
- ]
- },
- "28492": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TextBase#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28500": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TextBase#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28508": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TextBase#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28516": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TextBase#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28524": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TextBase#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28532": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TextBase#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TextBase(): TextBase",
- "url": "/api/class/TextBase#constructor-new-textbase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextBase"
- }
- ]
- },
- "28534": {
- "name": "nativeTextViewProtected",
- "type": "Property",
- "url": "/api/class/TextBase#nativetextviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "signatures": [
- {
- "code": "nativeTextViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 14,
- "character": 17
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "url": "/api/class/TextBase#nativetextviewprotected"
- }
- ]
- },
- "28535": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/TextBase#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "url": "/api/class/TextBase#text"
- }
- ]
- },
- "28536": {
- "name": "formattedText",
- "type": "Property",
- "url": "/api/class/TextBase#formattedtext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "formattedText: FormattedString",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "url": "/api/class/TextBase#formattedtext"
- }
- ]
- },
- "28537": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/TextBase#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "url": "/api/class/TextBase#fontsize"
- }
- ]
- },
- "28538": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/TextBase#letterspacing",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "url": "/api/class/TextBase#letterspacing"
- }
- ]
- },
- "28539": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/TextBase#lineheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "url": "/api/class/TextBase#lineheight"
- }
- ]
- },
- "28540": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/TextBase#textalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "url": "/api/class/TextBase#textalignment"
- }
- ]
- },
- "28541": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/TextBase#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "url": "/api/class/TextBase#textdecoration"
- }
- ]
- },
- "28542": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/TextBase#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "url": "/api/class/TextBase#texttransform"
- }
- ]
- },
- "28543": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/TextBase#textshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "url": "/api/class/TextBase#textshadow"
- }
- ]
- },
- "28544": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/TextBase#whitespace",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/TextBase#whitespace"
- }
- ]
- },
- "28545": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/TextBase#maxlines",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/TextBase#maxlines"
- }
- ]
- },
- "28546": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/TextBase#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/TextBase#padding"
- }
- ]
- },
- "28547": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/TextBase#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextBase#paddingbottom"
- }
- ]
- },
- "28548": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/TextBase#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextBase#paddingleft"
- }
- ]
- },
- "28549": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/TextBase#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextBase#paddingright"
- }
- ]
- },
- "28550": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/TextBase#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextBase#paddingtop"
- }
- ]
- },
- "28561": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/TextBase#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/TextBase#android"
- }
- ]
- },
- "28562": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/TextBase#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/TextBase#ios"
- }
- ]
- },
- "28563": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/TextBase#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/TextBase#bindingcontext"
- }
- ]
- },
- "28564": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/TextBase#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#bordercolor"
- }
- ]
- },
- "28565": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/TextBase#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#bordertopcolor"
- }
- ]
- },
- "28566": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/TextBase#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderrightcolor"
- }
- ]
- },
- "28567": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/TextBase#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderbottomcolor"
- }
- ]
- },
- "28568": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/TextBase#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderleftcolor"
- }
- ]
- },
- "28569": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/TextBase#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderwidth"
- }
- ]
- },
- "28570": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/TextBase#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#bordertopwidth"
- }
- ]
- },
- "28571": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/TextBase#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderrightwidth"
- }
- ]
- },
- "28572": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/TextBase#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderbottomwidth"
- }
- ]
- },
- "28573": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/TextBase#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderleftwidth"
- }
- ]
- },
- "28574": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/TextBase#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderradius"
- }
- ]
- },
- "28575": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/TextBase#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#bordertopleftradius"
- }
- ]
- },
- "28576": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/TextBase#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#bordertoprightradius"
- }
- ]
- },
- "28577": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/TextBase#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderbottomrightradius"
- }
- ]
- },
- "28578": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/TextBase#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#borderbottomleftradius"
- }
- ]
- },
- "28579": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/TextBase#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#color"
- }
- ]
- },
- "28580": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/TextBase#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/TextBase#accessible"
- }
- ]
- },
- "28581": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityhidden"
- }
- ]
- },
- "28582": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityidentifier"
- }
- ]
- },
- "28583": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityrole"
- }
- ]
- },
- "28584": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilitystate"
- }
- ]
- },
- "28585": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilitylabel"
- }
- ]
- },
- "28586": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityvalue"
- }
- ]
- },
- "28587": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilityhint"
- }
- ]
- },
- "28588": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#accessibilityliveregion"
- }
- ]
- },
- "28589": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilitylanguage"
- }
- ]
- },
- "28590": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/TextBase#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/TextBase#accessibilitymediasession"
- }
- ]
- },
- "28591": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/TextBase#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/TextBase#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "28592": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/TextBase#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TextBase#iosaccessibilityminfontscale"
- }
- ]
- },
- "28593": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/TextBase#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TextBase#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "28594": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/TextBase#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/TextBase#androidcontentdescriptionupdated"
- }
- ]
- },
- "28595": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/TextBase#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#automationtext"
- }
- ]
- },
- "28596": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/TextBase#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/TextBase#androidelevation"
- }
- ]
- },
- "28597": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/TextBase#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/TextBase#androiddynamicelevationoffset"
- }
- ]
- },
- "28598": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/TextBase#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/TextBase#background"
- }
- ]
- },
- "28599": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/TextBase#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#backgroundcolor"
- }
- ]
- },
- "28600": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/TextBase#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#backgroundimage"
- }
- ]
- },
- "28601": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/TextBase#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#boxshadow"
- }
- ]
- },
- "28602": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/TextBase#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/TextBase#minwidth"
- }
- ]
- },
- "28603": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/TextBase#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/TextBase#minheight"
- }
- ]
- },
- "28604": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/TextBase#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#width"
- }
- ]
- },
- "28605": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/TextBase#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#height"
- }
- ]
- },
- "28606": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/TextBase#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/TextBase#margin"
- }
- ]
- },
- "28607": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/TextBase#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/TextBase#marginleft"
- }
- ]
- },
- "28608": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/TextBase#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/TextBase#margintop"
- }
- ]
- },
- "28609": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/TextBase#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/TextBase#marginright"
- }
- ]
- },
- "28610": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/TextBase#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/TextBase#marginbottom"
- }
- ]
- },
- "28611": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/TextBase#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/TextBase#horizontalalignment"
- }
- ]
- },
- "28612": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/TextBase#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/TextBase#verticalalignment"
- }
- ]
- },
- "28613": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/TextBase#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#visibility"
- }
- ]
- },
- "28614": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/TextBase#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/TextBase#opacity"
- }
- ]
- },
- "28615": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/TextBase#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/TextBase#rotate"
- }
- ]
- },
- "28616": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/TextBase#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/TextBase#rotatex"
- }
- ]
- },
- "28617": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/TextBase#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/TextBase#rotatey"
- }
- ]
- },
- "28618": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/TextBase#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/TextBase#perspective"
- }
- ]
- },
- "28619": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/TextBase#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TextBase#translatex"
- }
- ]
- },
- "28620": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/TextBase#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TextBase#translatey"
- }
- ]
- },
- "28621": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/TextBase#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#scalex"
- }
- ]
- },
- "28622": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/TextBase#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#scaley"
- }
- ]
- },
- "28623": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/TextBase#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#originx"
- }
- ]
- },
- "28624": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/TextBase#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#originy"
- }
- ]
- },
- "28625": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/TextBase#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#isenabled"
- }
- ]
- },
- "28626": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/TextBase#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TextBase#isuserinteractionenabled"
- }
- ]
- },
- "28627": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/TextBase#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TextBase#iosoverflowsafearea"
- }
- ]
- },
- "28628": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/TextBase#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/TextBase#iosoverflowsafeareaenabled"
- }
- ]
- },
- "28629": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/TextBase#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TextBase#iosignoresafearea"
- }
- ]
- },
- "28630": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/TextBase#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/TextBase#islayoutvalid"
- }
- ]
- },
- "28631": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/TextBase#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/TextBase#csstype"
- }
- ]
- },
- "28632": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/TextBase#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#cssclasses"
- }
- ]
- },
- "28633": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/TextBase#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#csspseudoclasses"
- }
- ]
- },
- "28634": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/TextBase#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TextBase#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28638": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/TextBase#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/TextBase#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28645": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/TextBase#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/TextBase#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "28647": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/TextBase#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/TextBase#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "28649": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/TextBase#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/TextBase#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "28651": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/TextBase#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TextBase#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28655": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/TextBase#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TextBase#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28661": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/TextBase#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/TextBase#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28665": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/TextBase#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/TextBase#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28671": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/TextBase#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/TextBase#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "28673": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/TextBase#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/TextBase#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "28676": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TextBase#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextBase#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "28684": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TextBase#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextBase#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextBase#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextBase#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextBase#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/TextBase#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "28727": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/TextBase#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/TextBase#modal"
- }
- ]
- },
- "28728": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/TextBase#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/TextBase#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "28731": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/TextBase#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/TextBase#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "28734": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/TextBase#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/TextBase#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "28741": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/TextBase#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/TextBase#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "28743": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/TextBase#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/TextBase#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "28745": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/TextBase#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/TextBase#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "28748": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/TextBase#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/TextBase#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "28750": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/TextBase#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/TextBase#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "28762": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/TextBase#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/TextBase#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "28764": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/TextBase#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/TextBase#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "28766": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/TextBase#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/TextBase#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "28768": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/TextBase#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/TextBase#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28774": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/TextBase#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/TextBase#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28776": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/TextBase#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/TextBase#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "28778": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/TextBase#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/TextBase#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28780": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/TextBase#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/TextBase#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28786": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/TextBase#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/TextBase#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28789": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/TextBase#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/TextBase#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28792": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/TextBase#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/TextBase#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28861": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/TextBase#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/TextBase#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28867": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/TextBase#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/TextBase#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28872": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/TextBase#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/TextBase#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28874": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/TextBase#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/TextBase#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28876": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/TextBase#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/TextBase#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "28879": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/TextBase#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/TextBase#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "28882": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/TextBase#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/TextBase#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "28886": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/TextBase#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#testid"
- }
- ]
- },
- "28887": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/TextBase#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#touchanimation"
- }
- ]
- },
- "28888": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/TextBase#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#ignoretouchanimation"
- }
- ]
- },
- "28889": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/TextBase#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#touchdelay"
- }
- ]
- },
- "28890": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/TextBase#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#closemodalcallback"
- }
- ]
- },
- "28891": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/TextBase#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/TextBase#transitionid"
- }
- ]
- },
- "28892": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/TextBase#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#islayoutvalid"
- }
- ]
- },
- "28893": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/TextBase#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/TextBase#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28895": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/TextBase#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/TextBase#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28898": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/TextBase#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28906": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TextBase#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28914": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TextBase#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28922": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/TextBase#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/TextBase#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "28925": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/TextBase#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/TextBase#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28928": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/TextBase#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/TextBase#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28932": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/TextBase#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/TextBase#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28938": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/TextBase#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/TextBase#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28940": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/TextBase#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/TextBase#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28942": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/TextBase#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/TextBase#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28944": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/TextBase#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/TextBase#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "28948": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/TextBase#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/TextBase#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "28952": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/TextBase#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/TextBase#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "28956": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/TextBase#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/TextBase#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28958": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/TextBase#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/TextBase#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28964": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/TextBase#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/TextBase#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "28966": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/TextBase#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/TextBase#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28970": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/TextBase#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#domnode"
- }
- ]
- },
- "28971": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/TextBase#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#recyclenativeview"
- }
- ]
- },
- "28972": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/TextBase#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/TextBase#viewcontroller"
- }
- ]
- },
- "28973": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/TextBase#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/TextBase#nativeviewprotected"
- }
- ]
- },
- "28974": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/TextBase#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/TextBase#parent"
- }
- ]
- },
- "28975": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/TextBase#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/TextBase#iscollapsed"
- }
- ]
- },
- "28976": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/TextBase#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/TextBase#id"
- }
- ]
- },
- "28977": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/TextBase#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/TextBase#classname"
- }
- ]
- },
- "28978": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/TextBase#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/TextBase#sharedtransitiontag"
- }
- ]
- },
- "28979": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/TextBase#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/TextBase#sharedtransitionignore"
- }
- ]
- },
- "28980": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/TextBase#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#domid"
- }
- ]
- },
- "28981": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/TextBase#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#context"
- }
- ]
- },
- "28982": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/TextBase#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#isaddedtonativevisualtree"
- }
- ]
- },
- "28983": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/TextBase#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#cssstate"
- }
- ]
- },
- "28984": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/TextBase#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#stylescope"
- }
- ]
- },
- "28989": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/TextBase#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/TextBase#suspendnativeupdatescount"
- }
- ]
- },
- "28990": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/TextBase#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#isstylescopehost"
- }
- ]
- },
- "28991": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/TextBase#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "28992": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/TextBase#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#left"
- }
- ]
- },
- "28993": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/TextBase#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#top"
- }
- ]
- },
- "28994": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveleft"
- }
- ]
- },
- "28995": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/TextBase#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivetop"
- }
- ]
- },
- "28996": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/TextBase#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#dock"
- }
- ]
- },
- "28997": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/TextBase#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#row"
- }
- ]
- },
- "28998": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/TextBase#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#col"
- }
- ]
- },
- "28999": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/TextBase#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#column"
- }
- ]
- },
- "29000": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/TextBase#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#rowspan"
- }
- ]
- },
- "29001": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/TextBase#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#colspan"
- }
- ]
- },
- "29002": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/TextBase#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#columnspan"
- }
- ]
- },
- "29003": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/TextBase#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#order"
- }
- ]
- },
- "29004": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/TextBase#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#flexgrow"
- }
- ]
- },
- "29005": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/TextBase#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#flexshrink"
- }
- ]
- },
- "29006": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/TextBase#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#flexwrapbefore"
- }
- ]
- },
- "29007": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/TextBase#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#alignself"
- }
- ]
- },
- "29008": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/TextBase#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#oldleft"
- }
- ]
- },
- "29009": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/TextBase#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#oldtop"
- }
- ]
- },
- "29010": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/TextBase#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#oldright"
- }
- ]
- },
- "29011": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/TextBase#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#oldbottom"
- }
- ]
- },
- "29012": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/TextBase#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#ignoreflexminwidthheightreset"
- }
- ]
- },
- "29013": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveminwidth"
- }
- ]
- },
- "29014": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveminheight"
- }
- ]
- },
- "29015": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/TextBase#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivewidth"
- }
- ]
- },
- "29016": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveheight"
- }
- ]
- },
- "29017": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/TextBase#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivemargintop"
- }
- ]
- },
- "29018": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/TextBase#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivemarginright"
- }
- ]
- },
- "29019": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/TextBase#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivemarginbottom"
- }
- ]
- },
- "29020": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/TextBase#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivemarginleft"
- }
- ]
- },
- "29021": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/TextBase#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivepaddingtop"
- }
- ]
- },
- "29022": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/TextBase#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivepaddingright"
- }
- ]
- },
- "29023": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/TextBase#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivepaddingbottom"
- }
- ]
- },
- "29024": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/TextBase#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivepaddingleft"
- }
- ]
- },
- "29025": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/TextBase#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectivebordertopwidth"
- }
- ]
- },
- "29026": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveborderrightwidth"
- }
- ]
- },
- "29027": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveborderbottomwidth"
- }
- ]
- },
- "29028": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/TextBase#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#effectiveborderleftwidth"
- }
- ]
- },
- "29029": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/TextBase#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#defaultpaddingtop"
- }
- ]
- },
- "29030": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/TextBase#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#defaultpaddingright"
- }
- ]
- },
- "29031": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/TextBase#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#defaultpaddingbottom"
- }
- ]
- },
- "29032": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/TextBase#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#defaultpaddingleft"
- }
- ]
- },
- "29033": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/TextBase#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TextBase#ispaddingrelative"
- }
- ]
- },
- "29035": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/TextBase#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/TextBase#reusable"
- }
- ]
- },
- "29036": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/TextBase#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/TextBase#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "29040": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/TextBase#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/TextBase#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "29044": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/TextBase#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/TextBase#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29046": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/TextBase#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/TextBase#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "29050": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/TextBase#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/TextBase#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "29052": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/TextBase#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/TextBase#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29056": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/TextBase#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/TextBase#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29060": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/TextBase#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/TextBase#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29064": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/TextBase#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/TextBase#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "29066": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/TextBase#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/TextBase#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29068": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/TextBase#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/TextBase#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29072": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/TextBase#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/TextBase#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29074": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/TextBase#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/TextBase#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29076": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextBase#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TextBase#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29079": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextBase#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TextBase#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29082": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/TextBase#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/TextBase#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "29088": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/TextBase#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/TextBase#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29090": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/TextBase#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/TextBase#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29092": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/TextBase#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/TextBase#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29095": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/TextBase#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/TextBase#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29098": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/TextBase#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/TextBase#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29102": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/TextBase#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/TextBase#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29105": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/TextBase#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TextBase#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29109": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/TextBase#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TextBase#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29113": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/TextBase#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/TextBase#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29116": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/TextBase#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/TextBase#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "29118": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/TextBase#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/TextBase#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29121": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/TextBase#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/TextBase#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29124": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/TextBase#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/TextBase#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29127": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/TextBase#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/TextBase#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "29129": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/TextBase#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/TextBase#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29131": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/TextBase#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/TextBase#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29133": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/TextBase#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/TextBase#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29138": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/TextBase#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/TextBase#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29141": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/TextBase#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/TextBase#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29144": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/TextBase#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/TextBase#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29147": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/TextBase#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/TextBase#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "29150": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TextBase#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/TextBase#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29154": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TextBase#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/TextBase#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29157": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/TextBase#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/TextBase#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29161": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/TextBase#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/TextBase#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29164": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/TextBase#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/TextBase#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29167": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextBase#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/TextBase#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29169": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/TextBase#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/TextBase#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "29173": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/TextBase#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/TextBase#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29176": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/TextBase#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/TextBase#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29178": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/TextBase#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/TextBase#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "29181": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/TextBase#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/TextBase#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "29184": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/TextBase#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/TextBase#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29188": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TextBase#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextBase#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29196": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/TextBase#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/TextBase#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29200": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/TextBase#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/TextBase#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "29205": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/TextBase#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/TextBase#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "29208": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/TextBase#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/TextBase#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "29213": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/TextBase#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/TextBase#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TextBase.md b/content/api/class/TextBase.md
deleted file mode 100644
index 1ff3ff4f..00000000
--- a/content/api/class/TextBase.md
+++ /dev/null
@@ -1,286 +0,0 @@
----
-title: TextBase
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TextBase'
-layout: api
-seo:
- description: TextBase
----
-
-
-
-
-
-
-returnPressEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 10,
- "character": 15
- }
- ],
- "url": "/api/class/TextField#returnpressevent"
- }
- ]
- },
- "29978": {
- "name": "blurEvent",
- "type": "Property",
- "url": "/api/class/TextField#blurevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "blurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 12,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#blurevent"
- }
- ]
- },
- "29979": {
- "name": "focusEvent",
- "type": "Property",
- "url": "/api/class/TextField#focusevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "focusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 13,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#focusevent"
- }
- ]
- },
- "29980": {
- "name": "textChangeEvent",
- "type": "Property",
- "url": "/api/class/TextField#textchangeevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 14,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#textchangeevent"
- }
- ]
- },
- "29981": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/TextField#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/TextField#layoutchangedevent"
- }
- ]
- },
- "29982": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/TextField#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/TextField#showingmodallyevent"
- }
- ]
- },
- "29983": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/TextField#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/TextField#shownmodallyevent"
- }
- ]
- },
- "29984": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityblurevent"
- }
- ]
- },
- "29985": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityfocusevent"
- }
- ]
- },
- "29986": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityfocuschangedevent"
- }
- ]
- },
- "29987": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/TextField#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/TextField#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "29996": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/TextField#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TextField#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30004": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/TextField#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/TextField#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "30010": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/TextField#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/TextField#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "30014": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#accessibilityperformescapeevent"
- }
- ]
- },
- "30015": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/TextField#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/TextField#loadedevent"
- }
- ]
- },
- "30016": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/TextField#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/TextField#unloadedevent"
- }
- ]
- },
- "30017": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/TextField#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/TextField#createdevent"
- }
- ]
- },
- "30018": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/TextField#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/TextField#disposenativeviewevent"
- }
- ]
- },
- "30019": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/TextField#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/TextField#propertychangeevent"
- }
- ]
- },
- "30020": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TextField#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30028": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TextField#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30036": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TextField#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30044": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TextField#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30052": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TextField#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30060": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TextField#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TextField(): TextField",
- "url": "/api/class/TextField#constructor-new-textfield",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "TextField"
- }
- ]
- },
- "30062": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/TextField#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 15,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/TextField#android"
- }
- ]
- },
- "30063": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/TextField#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 20,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/TextField#ios"
- }
- ]
- },
- "30064": {
- "name": "secure",
- "type": "Property",
- "url": "/api/class/TextField#secure",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if a text field is for password entry."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "secure: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 25,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if a text field is for password entry."
- }
- ]
- },
- "url": "/api/class/TextField#secure"
- }
- ]
- },
- "30065": {
- "name": "closeOnReturn",
- "type": "Property",
- "url": "/api/class/TextField#closeonreturn",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if a text field should dismiss on return."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "closeOnReturn: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if a text field should dismiss on return."
- }
- ]
- },
- "url": "/api/class/TextField#closeonreturn"
- }
- ]
- },
- "30066": {
- "name": "secureWithoutAutofill",
- "type": "Property",
- "url": "/api/class/TextField#securewithoutautofill",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS only (to avoid 12+ auto suggested strong password handling)"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "secureWithoutAutofill: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 35,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS only (to avoid 12+ auto suggested strong password handling)"
- }
- ]
- },
- "url": "/api/class/TextField#securewithoutautofill"
- }
- ]
- },
- "30067": {
- "name": "_updateAttributedPlaceholder",
- "type": "Method",
- "url": "/api/class/TextField#updateattributedplaceholder",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateAttributedPlaceholder(): void",
- "url": "/api/class/TextField#updateattributedplaceholder-updateattributedplaceholder-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-field/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS only update placeholder attributed text style"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30069": {
- "name": "keyboardType",
- "type": "Property",
- "url": "/api/class/TextField#keyboardtype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard type."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "keyboardType: KeyboardInputType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard type."
- }
- ]
- },
- "url": "/api/class/TextField#keyboardtype"
- }
- ]
- },
- "30070": {
- "name": "returnKeyType",
- "type": "Property",
- "url": "/api/class/TextField#returnkeytype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard return key flavor."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "returnKeyType: ReturnKeyButtonType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard return key flavor."
- }
- ]
- },
- "url": "/api/class/TextField#returnkeytype"
- }
- ]
- },
- "30071": {
- "name": "updateTextTrigger",
- "type": "Property",
- "url": "/api/class/TextField#updatetexttrigger",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating when the text property will be updated."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "updateTextTrigger: UpdateTextTriggerType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating when the text property will be updated."
- }
- ]
- },
- "url": "/api/class/TextField#updatetexttrigger"
- }
- ]
- },
- "30072": {
- "name": "autocapitalizationType",
- "type": "Property",
- "url": "/api/class/TextField#autocapitalizationtype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autocapitalization type."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "autocapitalizationType: AutocapitalizationInputType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autocapitalization type."
- }
- ]
- },
- "url": "/api/class/TextField#autocapitalizationtype"
- }
- ]
- },
- "30073": {
- "name": "autofillType",
- "type": "Property",
- "url": "/api/class/TextField#autofilltype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autofill type."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "autofillType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autofill type."
- }
- ]
- },
- "url": "/api/class/TextField#autofilltype"
- }
- ]
- },
- "30074": {
- "name": "editable",
- "type": "Property",
- "url": "/api/class/TextField#editable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the instance is editable."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "editable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the instance is editable."
- }
- ]
- },
- "url": "/api/class/TextField#editable"
- }
- ]
- },
- "30075": {
- "name": "autocorrect",
- "type": "Property",
- "url": "/api/class/TextField#autocorrect",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables autocorrection."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "autocorrect: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables autocorrection."
- }
- ]
- },
- "url": "/api/class/TextField#autocorrect"
- }
- ]
- },
- "30076": {
- "name": "hint",
- "type": "Property",
- "url": "/api/class/TextField#hint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the placeholder text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "hint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the placeholder text."
- }
- ]
- },
- "url": "/api/class/TextField#hint"
- }
- ]
- },
- "30077": {
- "name": "maxLength",
- "type": "Property",
- "url": "/api/class/TextField#maxlength",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of characters."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "maxLength: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of characters."
- }
- ]
- },
- "url": "/api/class/TextField#maxlength"
- }
- ]
- },
- "30078": {
- "name": "valueFormatter",
- "type": "Property",
- "url": "/api/class/TextField#valueformatter",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "valueFormatter: (value: string) => string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 65,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#valueformatter"
- }
- ]
- },
- "30082": {
- "name": "dismissSoftInput",
- "type": "Method",
- "url": "/api/class/TextField#dismisssoftinput",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "dismissSoftInput(): void",
- "url": "/api/class/TextField#dismisssoftinput-dismisssoftinput-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hides the soft input method, ususally a soft keyboard."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30087": {
- "name": "setSelection",
- "type": "Method",
- "url": "/api/class/TextField#setselection",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSelection(start: number, stop?: number): any",
- "url": "/api/class/TextField#setselection-setselection-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 82,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the selection anchor to start and the selection edge to stop"
- }
- ]
- },
- "parameters": [
- {
- "name": "start",
- "type": "number",
- "flags": {}
- },
- {
- "name": "stop",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "30091": {
- "name": "nativeTextViewProtected",
- "type": "Property",
- "url": "/api/class/TextField#nativetextviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "nativeTextViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 14,
- "character": 17
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "url": "/api/class/TextField#nativetextviewprotected"
- }
- ]
- },
- "30092": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/TextField#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "url": "/api/class/TextField#text"
- }
- ]
- },
- "30093": {
- "name": "formattedText",
- "type": "Property",
- "url": "/api/class/TextField#formattedtext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "formattedText: FormattedString",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "url": "/api/class/TextField#formattedtext"
- }
- ]
- },
- "30094": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/TextField#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "url": "/api/class/TextField#fontsize"
- }
- ]
- },
- "30095": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/TextField#letterspacing",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "url": "/api/class/TextField#letterspacing"
- }
- ]
- },
- "30096": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/TextField#lineheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "url": "/api/class/TextField#lineheight"
- }
- ]
- },
- "30097": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/TextField#textalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "url": "/api/class/TextField#textalignment"
- }
- ]
- },
- "30098": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/TextField#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "url": "/api/class/TextField#textdecoration"
- }
- ]
- },
- "30099": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/TextField#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "url": "/api/class/TextField#texttransform"
- }
- ]
- },
- "30100": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/TextField#textshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "url": "/api/class/TextField#textshadow"
- }
- ]
- },
- "30101": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/TextField#whitespace",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/TextField#whitespace"
- }
- ]
- },
- "30102": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/TextField#maxlines",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/TextField#maxlines"
- }
- ]
- },
- "30103": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/TextField#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/TextField#padding"
- }
- ]
- },
- "30104": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/TextField#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextField#paddingbottom"
- }
- ]
- },
- "30105": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/TextField#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextField#paddingleft"
- }
- ]
- },
- "30106": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/TextField#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextField#paddingright"
- }
- ]
- },
- "30107": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/TextField#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextField#paddingtop"
- }
- ]
- },
- "30118": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/TextField#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/TextField#bindingcontext"
- }
- ]
- },
- "30119": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/TextField#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#bordercolor"
- }
- ]
- },
- "30120": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/TextField#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#bordertopcolor"
- }
- ]
- },
- "30121": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/TextField#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderrightcolor"
- }
- ]
- },
- "30122": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/TextField#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderbottomcolor"
- }
- ]
- },
- "30123": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/TextField#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderleftcolor"
- }
- ]
- },
- "30124": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/TextField#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderwidth"
- }
- ]
- },
- "30125": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/TextField#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/TextField#bordertopwidth"
- }
- ]
- },
- "30126": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/TextField#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderrightwidth"
- }
- ]
- },
- "30127": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/TextField#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderbottomwidth"
- }
- ]
- },
- "30128": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/TextField#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderleftwidth"
- }
- ]
- },
- "30129": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/TextField#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderradius"
- }
- ]
- },
- "30130": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/TextField#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextField#bordertopleftradius"
- }
- ]
- },
- "30131": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/TextField#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextField#bordertoprightradius"
- }
- ]
- },
- "30132": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/TextField#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderbottomrightradius"
- }
- ]
- },
- "30133": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/TextField#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextField#borderbottomleftradius"
- }
- ]
- },
- "30134": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/TextField#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#color"
- }
- ]
- },
- "30135": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/TextField#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/TextField#accessible"
- }
- ]
- },
- "30136": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityhidden"
- }
- ]
- },
- "30137": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityidentifier"
- }
- ]
- },
- "30138": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityrole"
- }
- ]
- },
- "30139": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/TextField#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TextField#accessibilitystate"
- }
- ]
- },
- "30140": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/TextField#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilitylabel"
- }
- ]
- },
- "30141": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityvalue"
- }
- ]
- },
- "30142": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/TextField#accessibilityhint"
- }
- ]
- },
- "30143": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/TextField#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#accessibilityliveregion"
- }
- ]
- },
- "30144": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/TextField#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/TextField#accessibilitylanguage"
- }
- ]
- },
- "30145": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/TextField#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/TextField#accessibilitymediasession"
- }
- ]
- },
- "30146": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/TextField#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/TextField#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "30147": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/TextField#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TextField#iosaccessibilityminfontscale"
- }
- ]
- },
- "30148": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/TextField#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TextField#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "30149": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/TextField#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/TextField#androidcontentdescriptionupdated"
- }
- ]
- },
- "30150": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/TextField#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#automationtext"
- }
- ]
- },
- "30151": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/TextField#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/TextField#androidelevation"
- }
- ]
- },
- "30152": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/TextField#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/TextField#androiddynamicelevationoffset"
- }
- ]
- },
- "30153": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/TextField#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/TextField#background"
- }
- ]
- },
- "30154": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/TextField#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/TextField#backgroundcolor"
- }
- ]
- },
- "30155": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/TextField#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/TextField#backgroundimage"
- }
- ]
- },
- "30156": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/TextField#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/TextField#boxshadow"
- }
- ]
- },
- "30157": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/TextField#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/TextField#minwidth"
- }
- ]
- },
- "30158": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/TextField#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/TextField#minheight"
- }
- ]
- },
- "30159": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/TextField#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/TextField#width"
- }
- ]
- },
- "30160": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/TextField#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/TextField#height"
- }
- ]
- },
- "30161": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/TextField#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/TextField#margin"
- }
- ]
- },
- "30162": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/TextField#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/TextField#marginleft"
- }
- ]
- },
- "30163": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/TextField#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/TextField#margintop"
- }
- ]
- },
- "30164": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/TextField#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/TextField#marginright"
- }
- ]
- },
- "30165": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/TextField#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/TextField#marginbottom"
- }
- ]
- },
- "30166": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/TextField#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/TextField#horizontalalignment"
- }
- ]
- },
- "30167": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/TextField#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/TextField#verticalalignment"
- }
- ]
- },
- "30168": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/TextField#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/TextField#visibility"
- }
- ]
- },
- "30169": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/TextField#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/TextField#opacity"
- }
- ]
- },
- "30170": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/TextField#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/TextField#rotate"
- }
- ]
- },
- "30171": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/TextField#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/TextField#rotatex"
- }
- ]
- },
- "30172": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/TextField#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/TextField#rotatey"
- }
- ]
- },
- "30173": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/TextField#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/TextField#perspective"
- }
- ]
- },
- "30174": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/TextField#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TextField#translatex"
- }
- ]
- },
- "30175": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/TextField#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TextField#translatey"
- }
- ]
- },
- "30176": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/TextField#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TextField#scalex"
- }
- ]
- },
- "30177": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/TextField#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TextField#scaley"
- }
- ]
- },
- "30178": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/TextField#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TextField#originx"
- }
- ]
- },
- "30179": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/TextField#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TextField#originy"
- }
- ]
- },
- "30180": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/TextField#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TextField#isenabled"
- }
- ]
- },
- "30181": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/TextField#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TextField#isuserinteractionenabled"
- }
- ]
- },
- "30182": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/TextField#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TextField#iosoverflowsafearea"
- }
- ]
- },
- "30183": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/TextField#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/TextField#iosoverflowsafeareaenabled"
- }
- ]
- },
- "30184": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/TextField#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TextField#iosignoresafearea"
- }
- ]
- },
- "30185": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/TextField#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/TextField#islayoutvalid"
- }
- ]
- },
- "30186": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/TextField#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/TextField#csstype"
- }
- ]
- },
- "30187": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/TextField#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#cssclasses"
- }
- ]
- },
- "30188": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/TextField#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#csspseudoclasses"
- }
- ]
- },
- "30189": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/TextField#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TextField#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30193": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/TextField#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/TextField#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30200": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/TextField#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/TextField#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30202": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/TextField#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/TextField#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30204": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/TextField#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/TextField#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30206": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/TextField#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TextField#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30210": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/TextField#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TextField#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30216": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/TextField#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/TextField#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30220": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/TextField#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/TextField#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30226": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/TextField#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/TextField#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "30228": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/TextField#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/TextField#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "30231": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TextField#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextField#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "30239": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TextField#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextField#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextField#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextField#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextField#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/TextField#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "30282": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/TextField#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/TextField#modal"
- }
- ]
- },
- "30283": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/TextField#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/TextField#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "30286": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/TextField#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/TextField#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "30289": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/TextField#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/TextField#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "30296": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/TextField#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/TextField#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "30298": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/TextField#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/TextField#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "30300": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/TextField#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/TextField#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "30303": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/TextField#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/TextField#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "30305": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/TextField#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/TextField#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "30317": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/TextField#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/TextField#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30319": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/TextField#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/TextField#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "30321": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/TextField#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/TextField#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "30323": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/TextField#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/TextField#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30329": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/TextField#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/TextField#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30331": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/TextField#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/TextField#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "30333": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/TextField#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/TextField#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30335": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/TextField#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/TextField#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30341": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/TextField#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/TextField#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30344": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/TextField#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/TextField#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30347": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/TextField#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/TextField#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30416": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/TextField#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/TextField#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "30422": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/TextField#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/TextField#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30427": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/TextField#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/TextField#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30429": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/TextField#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/TextField#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30431": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/TextField#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/TextField#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "30434": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/TextField#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/TextField#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "30437": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/TextField#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/TextField#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "30441": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/TextField#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#testid"
- }
- ]
- },
- "30442": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/TextField#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#touchanimation"
- }
- ]
- },
- "30443": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/TextField#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#ignoretouchanimation"
- }
- ]
- },
- "30444": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/TextField#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#touchdelay"
- }
- ]
- },
- "30445": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/TextField#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#closemodalcallback"
- }
- ]
- },
- "30446": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/TextField#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/TextField#transitionid"
- }
- ]
- },
- "30447": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/TextField#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#islayoutvalid"
- }
- ]
- },
- "30448": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/TextField#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/TextField#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30450": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/TextField#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/TextField#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30453": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/TextField#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30461": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TextField#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30469": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TextField#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30477": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/TextField#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/TextField#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "30480": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/TextField#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/TextField#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30483": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/TextField#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/TextField#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30487": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/TextField#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/TextField#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30493": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/TextField#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/TextField#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30495": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/TextField#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/TextField#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30497": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/TextField#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/TextField#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30499": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/TextField#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/TextField#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "30503": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/TextField#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/TextField#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "30507": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/TextField#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/TextField#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "30511": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/TextField#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/TextField#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30513": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/TextField#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/TextField#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30519": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/TextField#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/TextField#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30521": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/TextField#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/TextField#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30525": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/TextField#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#domnode"
- }
- ]
- },
- "30526": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/TextField#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#recyclenativeview"
- }
- ]
- },
- "30527": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/TextField#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/TextField#viewcontroller"
- }
- ]
- },
- "30528": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/TextField#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/TextField#nativeviewprotected"
- }
- ]
- },
- "30529": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/TextField#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/TextField#parent"
- }
- ]
- },
- "30530": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/TextField#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/TextField#iscollapsed"
- }
- ]
- },
- "30531": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/TextField#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/TextField#id"
- }
- ]
- },
- "30532": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/TextField#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/TextField#classname"
- }
- ]
- },
- "30533": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/TextField#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/TextField#sharedtransitiontag"
- }
- ]
- },
- "30534": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/TextField#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/TextField#sharedtransitionignore"
- }
- ]
- },
- "30535": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/TextField#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#domid"
- }
- ]
- },
- "30536": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/TextField#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#context"
- }
- ]
- },
- "30537": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/TextField#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#isaddedtonativevisualtree"
- }
- ]
- },
- "30538": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/TextField#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#cssstate"
- }
- ]
- },
- "30539": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/TextField#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#stylescope"
- }
- ]
- },
- "30544": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/TextField#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/TextField#suspendnativeupdatescount"
- }
- ]
- },
- "30545": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/TextField#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#isstylescopehost"
- }
- ]
- },
- "30546": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/TextField#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "30547": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/TextField#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#left"
- }
- ]
- },
- "30548": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/TextField#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#top"
- }
- ]
- },
- "30549": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/TextField#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveleft"
- }
- ]
- },
- "30550": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/TextField#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivetop"
- }
- ]
- },
- "30551": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/TextField#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#dock"
- }
- ]
- },
- "30552": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/TextField#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#row"
- }
- ]
- },
- "30553": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/TextField#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#col"
- }
- ]
- },
- "30554": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/TextField#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#column"
- }
- ]
- },
- "30555": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/TextField#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#rowspan"
- }
- ]
- },
- "30556": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/TextField#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#colspan"
- }
- ]
- },
- "30557": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/TextField#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#columnspan"
- }
- ]
- },
- "30558": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/TextField#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#order"
- }
- ]
- },
- "30559": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/TextField#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#flexgrow"
- }
- ]
- },
- "30560": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/TextField#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#flexshrink"
- }
- ]
- },
- "30561": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/TextField#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#flexwrapbefore"
- }
- ]
- },
- "30562": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/TextField#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#alignself"
- }
- ]
- },
- "30563": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/TextField#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#oldleft"
- }
- ]
- },
- "30564": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/TextField#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#oldtop"
- }
- ]
- },
- "30565": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/TextField#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#oldright"
- }
- ]
- },
- "30566": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/TextField#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#oldbottom"
- }
- ]
- },
- "30567": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/TextField#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#ignoreflexminwidthheightreset"
- }
- ]
- },
- "30568": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/TextField#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveminwidth"
- }
- ]
- },
- "30569": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/TextField#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveminheight"
- }
- ]
- },
- "30570": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/TextField#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivewidth"
- }
- ]
- },
- "30571": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/TextField#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveheight"
- }
- ]
- },
- "30572": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/TextField#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivemargintop"
- }
- ]
- },
- "30573": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/TextField#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivemarginright"
- }
- ]
- },
- "30574": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/TextField#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivemarginbottom"
- }
- ]
- },
- "30575": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/TextField#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivemarginleft"
- }
- ]
- },
- "30576": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/TextField#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivepaddingtop"
- }
- ]
- },
- "30577": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/TextField#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivepaddingright"
- }
- ]
- },
- "30578": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/TextField#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivepaddingbottom"
- }
- ]
- },
- "30579": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/TextField#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivepaddingleft"
- }
- ]
- },
- "30580": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/TextField#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectivebordertopwidth"
- }
- ]
- },
- "30581": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/TextField#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveborderrightwidth"
- }
- ]
- },
- "30582": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/TextField#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveborderbottomwidth"
- }
- ]
- },
- "30583": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/TextField#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#effectiveborderleftwidth"
- }
- ]
- },
- "30584": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/TextField#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#defaultpaddingtop"
- }
- ]
- },
- "30585": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/TextField#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#defaultpaddingright"
- }
- ]
- },
- "30586": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/TextField#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#defaultpaddingbottom"
- }
- ]
- },
- "30587": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/TextField#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#defaultpaddingleft"
- }
- ]
- },
- "30588": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/TextField#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextField#ispaddingrelative"
- }
- ]
- },
- "30590": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/TextField#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/TextField#reusable"
- }
- ]
- },
- "30591": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/TextField#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/TextField#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "30595": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/TextField#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/TextField#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "30599": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/TextField#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/TextField#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "30601": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/TextField#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/TextField#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "30605": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/TextField#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/TextField#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "30607": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/TextField#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/TextField#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "30611": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/TextField#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/TextField#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "30615": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/TextField#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/TextField#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "30619": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/TextField#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/TextField#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "30621": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/TextField#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/TextField#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30623": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/TextField#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/TextField#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30627": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/TextField#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/TextField#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30629": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/TextField#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/TextField#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30631": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextField#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TextField#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30634": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextField#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TextField#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30637": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/TextField#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/TextField#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "30643": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/TextField#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/TextField#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30645": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/TextField#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/TextField#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30647": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/TextField#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/TextField#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30650": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/TextField#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/TextField#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30653": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/TextField#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/TextField#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30657": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/TextField#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/TextField#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30660": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/TextField#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TextField#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30664": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/TextField#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TextField#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30668": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/TextField#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/TextField#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30671": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/TextField#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/TextField#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "30673": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/TextField#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/TextField#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30676": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/TextField#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/TextField#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30679": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/TextField#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/TextField#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30682": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/TextField#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/TextField#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "30684": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/TextField#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/TextField#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30686": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/TextField#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/TextField#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30688": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/TextField#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/TextField#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30693": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/TextField#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/TextField#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30696": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/TextField#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/TextField#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30699": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/TextField#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/TextField#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30702": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/TextField#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/TextField#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "30705": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TextField#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/TextField#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "30709": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TextField#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/TextField#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30712": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/TextField#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/TextField#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "30716": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/TextField#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/TextField#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30719": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/TextField#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/TextField#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30722": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextField#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/TextField#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30724": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/TextField#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/TextField#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "30728": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/TextField#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/TextField#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30731": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/TextField#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/TextField#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30733": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/TextField#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/TextField#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30736": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/TextField#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/TextField#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "30739": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/TextField#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/TextField#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30743": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TextField#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextField#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30751": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/TextField#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/TextField#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30755": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/TextField#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/TextField#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30760": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/TextField#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/TextField#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "30763": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/TextField#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/TextField#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "30768": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/TextField#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/TextField#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TextField.md b/content/api/class/TextField.md
deleted file mode 100644
index b4737240..00000000
--- a/content/api/class/TextField.md
+++ /dev/null
@@ -1,150 +0,0 @@
----
-title: TextField
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TextField'
-layout: api
-seo:
- description: "Represents an editable text field."
----
-
-
-
-
-
-
-blurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 12,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#blurevent"
- }
- ]
- },
- "30773": {
- "name": "focusEvent",
- "type": "Property",
- "url": "/api/class/TextView#focusevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "focusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 13,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#focusevent"
- }
- ]
- },
- "30774": {
- "name": "textChangeEvent",
- "type": "Property",
- "url": "/api/class/TextView#textchangeevent",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 14,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#textchangeevent"
- }
- ]
- },
- "30775": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/TextView#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/TextView#layoutchangedevent"
- }
- ]
- },
- "30776": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/TextView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/TextView#showingmodallyevent"
- }
- ]
- },
- "30777": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/TextView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/TextView#shownmodallyevent"
- }
- ]
- },
- "30778": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityblurevent"
- }
- ]
- },
- "30779": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityfocusevent"
- }
- ]
- },
- "30780": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityfocuschangedevent"
- }
- ]
- },
- "30781": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/TextView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/TextView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "30790": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/TextView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TextView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30798": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/TextView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/TextView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "30804": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/TextView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/TextView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "30808": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#accessibilityperformescapeevent"
- }
- ]
- },
- "30809": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/TextView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/TextView#loadedevent"
- }
- ]
- },
- "30810": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/TextView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/TextView#unloadedevent"
- }
- ]
- },
- "30811": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/TextView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/TextView#createdevent"
- }
- ]
- },
- "30812": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/TextView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/TextView#disposenativeviewevent"
- }
- ]
- },
- "30813": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/TextView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/TextView#propertychangeevent"
- }
- ]
- },
- "30814": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TextView#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30822": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TextView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30830": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TextView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30838": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TextView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30846": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TextView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30854": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TextView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TextView(): TextView",
- "url": "/api/class/TextView#constructor-new-textview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "TextView"
- }
- ]
- },
- "30856": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/TextView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-view/index.d.ts",
- "line": 11,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/TextView#android"
- }
- ]
- },
- "30857": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/TextView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-view/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "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."
- }
- ]
- },
- "url": "/api/class/TextView#ios"
- }
- ]
- },
- "30858": {
- "name": "maxLines",
- "type": "Property",
- "url": "/api/class/TextView#maxlines",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of lines."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxLines: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-view/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of lines."
- }
- ]
- },
- "url": "/api/class/TextView#maxlines"
- }
- ]
- },
- "30859": {
- "name": "keyboardType",
- "type": "Property",
- "url": "/api/class/TextView#keyboardtype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard type."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "keyboardType: KeyboardInputType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard type."
- }
- ]
- },
- "url": "/api/class/TextView#keyboardtype"
- }
- ]
- },
- "30860": {
- "name": "returnKeyType",
- "type": "Property",
- "url": "/api/class/TextView#returnkeytype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard return key flavor."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "returnKeyType: ReturnKeyButtonType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the soft keyboard return key flavor."
- }
- ]
- },
- "url": "/api/class/TextView#returnkeytype"
- }
- ]
- },
- "30861": {
- "name": "updateTextTrigger",
- "type": "Property",
- "url": "/api/class/TextView#updatetexttrigger",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating when the text property will be updated."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "updateTextTrigger: UpdateTextTriggerType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating when the text property will be updated."
- }
- ]
- },
- "url": "/api/class/TextView#updatetexttrigger"
- }
- ]
- },
- "30862": {
- "name": "autocapitalizationType",
- "type": "Property",
- "url": "/api/class/TextView#autocapitalizationtype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autocapitalization type."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "autocapitalizationType: AutocapitalizationInputType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autocapitalization type."
- }
- ]
- },
- "url": "/api/class/TextView#autocapitalizationtype"
- }
- ]
- },
- "30863": {
- "name": "autofillType",
- "type": "Property",
- "url": "/api/class/TextView#autofilltype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autofill type."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "autofillType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the autofill type."
- }
- ]
- },
- "url": "/api/class/TextView#autofilltype"
- }
- ]
- },
- "30864": {
- "name": "editable",
- "type": "Property",
- "url": "/api/class/TextView#editable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the instance is editable."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "editable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets whether the instance is editable."
- }
- ]
- },
- "url": "/api/class/TextView#editable"
- }
- ]
- },
- "30865": {
- "name": "autocorrect",
- "type": "Property",
- "url": "/api/class/TextView#autocorrect",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables autocorrection."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "autocorrect: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables autocorrection."
- }
- ]
- },
- "url": "/api/class/TextView#autocorrect"
- }
- ]
- },
- "30866": {
- "name": "hint",
- "type": "Property",
- "url": "/api/class/TextView#hint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the placeholder text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "hint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the placeholder text."
- }
- ]
- },
- "url": "/api/class/TextView#hint"
- }
- ]
- },
- "30867": {
- "name": "maxLength",
- "type": "Property",
- "url": "/api/class/TextView#maxlength",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of characters."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "maxLength: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Limits input to a certain number of characters."
- }
- ]
- },
- "url": "/api/class/TextView#maxlength"
- }
- ]
- },
- "30868": {
- "name": "valueFormatter",
- "type": "Property",
- "url": "/api/class/TextView#valueformatter",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "valueFormatter: (value: string) => string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 65,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#valueformatter"
- }
- ]
- },
- "30872": {
- "name": "dismissSoftInput",
- "type": "Method",
- "url": "/api/class/TextView#dismisssoftinput",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "dismissSoftInput(): void",
- "url": "/api/class/TextView#dismisssoftinput-dismisssoftinput-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 70,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hides the soft input method, ususally a soft keyboard."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "30877": {
- "name": "setSelection",
- "type": "Method",
- "url": "/api/class/TextView#setselection",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSelection(start: number, stop?: number): any",
- "url": "/api/class/TextView#setselection-setselection-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/editable-text-base/index.d.ts",
- "line": 82,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the selection anchor to start and the selection edge to stop"
- }
- ]
- },
- "parameters": [
- {
- "name": "start",
- "type": "number",
- "flags": {}
- },
- {
- "name": "stop",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "30881": {
- "name": "nativeTextViewProtected",
- "type": "Property",
- "url": "/api/class/TextView#nativetextviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isReadonly": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "nativeTextViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 14,
- "character": 17
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets of the text widget. In some cases(android TextInputLayout) the TextView is made of 2 views: the layout and the text view\nSo we need a different getter for the layout and text functions"
- }
- ]
- },
- "url": "/api/class/TextView#nativetextviewprotected"
- }
- ]
- },
- "30882": {
- "name": "text",
- "type": "Property",
- "url": "/api/class/TextView#text",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "text: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 19,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the text."
- }
- ]
- },
- "url": "/api/class/TextView#text"
- }
- ]
- },
- "30883": {
- "name": "formattedText",
- "type": "Property",
- "url": "/api/class/TextView#formattedtext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "formattedText: FormattedString",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a formatted string."
- }
- ]
- },
- "url": "/api/class/TextView#formattedtext"
- }
- ]
- },
- "30884": {
- "name": "fontSize",
- "type": "Property",
- "url": "/api/class/TextView#fontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "fontSize: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets font-size style property."
- }
- ]
- },
- "url": "/api/class/TextView#fontsize"
- }
- ]
- },
- "30885": {
- "name": "letterSpacing",
- "type": "Property",
- "url": "/api/class/TextView#letterspacing",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "letterSpacing: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 34,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets letterSpace style property."
- }
- ]
- },
- "url": "/api/class/TextView#letterspacing"
- }
- ]
- },
- "30886": {
- "name": "lineHeight",
- "type": "Property",
- "url": "/api/class/TextView#lineheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "lineHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets lineHeight style property."
- }
- ]
- },
- "url": "/api/class/TextView#lineheight"
- }
- ]
- },
- "30887": {
- "name": "textAlignment",
- "type": "Property",
- "url": "/api/class/TextView#textalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textAlignment: TextAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text-alignment style property."
- }
- ]
- },
- "url": "/api/class/TextView#textalignment"
- }
- ]
- },
- "30888": {
- "name": "textDecoration",
- "type": "Property",
- "url": "/api/class/TextView#textdecoration",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textDecoration: TextDecorationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 49,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text decorations style property."
- }
- ]
- },
- "url": "/api/class/TextView#textdecoration"
- }
- ]
- },
- "30889": {
- "name": "textTransform",
- "type": "Property",
- "url": "/api/class/TextView#texttransform",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textTransform: TextTransformType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text transform style property."
- }
- ]
- },
- "url": "/api/class/TextView#texttransform"
- }
- ]
- },
- "30890": {
- "name": "textShadow",
- "type": "Property",
- "url": "/api/class/TextView#textshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "textShadow: CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 59,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets text shadow style property."
- }
- ]
- },
- "url": "/api/class/TextView#textshadow"
- }
- ]
- },
- "30891": {
- "name": "whiteSpace",
- "type": "Property",
- "url": "/api/class/TextView#whitespace",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "whiteSpace: WhiteSpaceType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets white space style property."
- }
- ]
- },
- "url": "/api/class/TextView#whitespace"
- }
- ]
- },
- "30892": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/TextView#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/TextView#padding"
- }
- ]
- },
- "30893": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/TextView#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextView#paddingbottom"
- }
- ]
- },
- "30894": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/TextView#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextView#paddingleft"
- }
- ]
- },
- "30895": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/TextView#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextView#paddingright"
- }
- ]
- },
- "30896": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/TextView#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/text-base/index.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/TextView#paddingtop"
- }
- ]
- },
- "30907": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/TextView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/TextView#bindingcontext"
- }
- ]
- },
- "30908": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/TextView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#bordercolor"
- }
- ]
- },
- "30909": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/TextView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#bordertopcolor"
- }
- ]
- },
- "30910": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/TextView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderrightcolor"
- }
- ]
- },
- "30911": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/TextView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderbottomcolor"
- }
- ]
- },
- "30912": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/TextView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderleftcolor"
- }
- ]
- },
- "30913": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/TextView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderwidth"
- }
- ]
- },
- "30914": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/TextView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/TextView#bordertopwidth"
- }
- ]
- },
- "30915": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/TextView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderrightwidth"
- }
- ]
- },
- "30916": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/TextView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderbottomwidth"
- }
- ]
- },
- "30917": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/TextView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderleftwidth"
- }
- ]
- },
- "30918": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/TextView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderradius"
- }
- ]
- },
- "30919": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/TextView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextView#bordertopleftradius"
- }
- ]
- },
- "30920": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/TextView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextView#bordertoprightradius"
- }
- ]
- },
- "30921": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/TextView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderbottomrightradius"
- }
- ]
- },
- "30922": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/TextView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TextView#borderbottomleftradius"
- }
- ]
- },
- "30923": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/TextView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#color"
- }
- ]
- },
- "30924": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/TextView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/TextView#accessible"
- }
- ]
- },
- "30925": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityhidden"
- }
- ]
- },
- "30926": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityidentifier"
- }
- ]
- },
- "30927": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityrole"
- }
- ]
- },
- "30928": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/TextView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TextView#accessibilitystate"
- }
- ]
- },
- "30929": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/TextView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilitylabel"
- }
- ]
- },
- "30930": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityvalue"
- }
- ]
- },
- "30931": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/TextView#accessibilityhint"
- }
- ]
- },
- "30932": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/TextView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#accessibilityliveregion"
- }
- ]
- },
- "30933": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/TextView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/TextView#accessibilitylanguage"
- }
- ]
- },
- "30934": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/TextView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/TextView#accessibilitymediasession"
- }
- ]
- },
- "30935": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/TextView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/TextView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "30936": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/TextView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TextView#iosaccessibilityminfontscale"
- }
- ]
- },
- "30937": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/TextView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TextView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "30938": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/TextView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/TextView#androidcontentdescriptionupdated"
- }
- ]
- },
- "30939": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/TextView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#automationtext"
- }
- ]
- },
- "30940": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/TextView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/TextView#androidelevation"
- }
- ]
- },
- "30941": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/TextView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/TextView#androiddynamicelevationoffset"
- }
- ]
- },
- "30942": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/TextView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/TextView#background"
- }
- ]
- },
- "30943": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/TextView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/TextView#backgroundcolor"
- }
- ]
- },
- "30944": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/TextView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/TextView#backgroundimage"
- }
- ]
- },
- "30945": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/TextView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/TextView#boxshadow"
- }
- ]
- },
- "30946": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/TextView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/TextView#minwidth"
- }
- ]
- },
- "30947": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/TextView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/TextView#minheight"
- }
- ]
- },
- "30948": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/TextView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/TextView#width"
- }
- ]
- },
- "30949": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/TextView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/TextView#height"
- }
- ]
- },
- "30950": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/TextView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/TextView#margin"
- }
- ]
- },
- "30951": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/TextView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/TextView#marginleft"
- }
- ]
- },
- "30952": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/TextView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/TextView#margintop"
- }
- ]
- },
- "30953": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/TextView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/TextView#marginright"
- }
- ]
- },
- "30954": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/TextView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/TextView#marginbottom"
- }
- ]
- },
- "30955": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/TextView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/TextView#horizontalalignment"
- }
- ]
- },
- "30956": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/TextView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/TextView#verticalalignment"
- }
- ]
- },
- "30957": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/TextView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/TextView#visibility"
- }
- ]
- },
- "30958": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/TextView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/TextView#opacity"
- }
- ]
- },
- "30959": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/TextView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/TextView#rotate"
- }
- ]
- },
- "30960": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/TextView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/TextView#rotatex"
- }
- ]
- },
- "30961": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/TextView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/TextView#rotatey"
- }
- ]
- },
- "30962": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/TextView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/TextView#perspective"
- }
- ]
- },
- "30963": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/TextView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TextView#translatex"
- }
- ]
- },
- "30964": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/TextView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TextView#translatey"
- }
- ]
- },
- "30965": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/TextView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TextView#scalex"
- }
- ]
- },
- "30966": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/TextView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TextView#scaley"
- }
- ]
- },
- "30967": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/TextView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TextView#originx"
- }
- ]
- },
- "30968": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/TextView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TextView#originy"
- }
- ]
- },
- "30969": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/TextView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TextView#isenabled"
- }
- ]
- },
- "30970": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/TextView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TextView#isuserinteractionenabled"
- }
- ]
- },
- "30971": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/TextView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TextView#iosoverflowsafearea"
- }
- ]
- },
- "30972": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/TextView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/TextView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "30973": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/TextView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TextView#iosignoresafearea"
- }
- ]
- },
- "30974": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/TextView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/TextView#islayoutvalid"
- }
- ]
- },
- "30975": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/TextView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/TextView#csstype"
- }
- ]
- },
- "30976": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/TextView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#cssclasses"
- }
- ]
- },
- "30977": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/TextView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#csspseudoclasses"
- }
- ]
- },
- "30978": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/TextView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TextView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30982": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/TextView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/TextView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30989": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/TextView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/TextView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30991": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/TextView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/TextView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30993": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/TextView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/TextView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "30995": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/TextView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TextView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "30999": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/TextView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TextView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31005": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/TextView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/TextView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31009": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/TextView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/TextView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31015": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/TextView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/TextView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31017": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/TextView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/TextView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "31020": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TextView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "31028": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TextView#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TextView#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/TextView#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "31071": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/TextView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/TextView#modal"
- }
- ]
- },
- "31072": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/TextView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/TextView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "31075": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/TextView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/TextView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "31078": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/TextView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/TextView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "31085": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/TextView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/TextView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "31087": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/TextView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/TextView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "31089": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/TextView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/TextView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "31092": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/TextView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/TextView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "31094": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/TextView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/TextView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31106": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/TextView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/TextView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "31108": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/TextView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/TextView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31110": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/TextView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/TextView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "31112": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/TextView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/TextView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31118": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/TextView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/TextView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31120": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/TextView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/TextView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31122": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/TextView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/TextView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31124": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/TextView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/TextView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31130": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/TextView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/TextView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31133": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/TextView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/TextView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31136": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/TextView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/TextView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31205": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/TextView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/TextView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31211": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/TextView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/TextView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31216": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/TextView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/TextView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31218": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/TextView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/TextView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31220": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/TextView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/TextView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31223": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/TextView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/TextView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "31226": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/TextView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/TextView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "31230": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/TextView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#testid"
- }
- ]
- },
- "31231": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/TextView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#touchanimation"
- }
- ]
- },
- "31232": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/TextView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#ignoretouchanimation"
- }
- ]
- },
- "31233": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/TextView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#touchdelay"
- }
- ]
- },
- "31234": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/TextView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#closemodalcallback"
- }
- ]
- },
- "31235": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/TextView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/TextView#transitionid"
- }
- ]
- },
- "31236": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/TextView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#islayoutvalid"
- }
- ]
- },
- "31237": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/TextView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/TextView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31239": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/TextView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/TextView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31242": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/TextView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31250": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TextView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31258": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TextView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31266": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/TextView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/TextView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "31269": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/TextView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/TextView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31272": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/TextView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/TextView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31276": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/TextView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/TextView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31282": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/TextView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/TextView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31284": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/TextView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/TextView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31286": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/TextView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/TextView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31288": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/TextView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/TextView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "31292": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/TextView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/TextView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "31296": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/TextView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/TextView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "31300": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/TextView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/TextView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31302": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/TextView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/TextView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31308": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/TextView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/TextView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31310": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/TextView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/TextView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31314": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/TextView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#domnode"
- }
- ]
- },
- "31315": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/TextView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#recyclenativeview"
- }
- ]
- },
- "31316": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/TextView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/TextView#viewcontroller"
- }
- ]
- },
- "31317": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/TextView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/TextView#nativeviewprotected"
- }
- ]
- },
- "31318": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/TextView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/TextView#parent"
- }
- ]
- },
- "31319": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/TextView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/TextView#iscollapsed"
- }
- ]
- },
- "31320": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/TextView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/TextView#id"
- }
- ]
- },
- "31321": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/TextView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/TextView#classname"
- }
- ]
- },
- "31322": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/TextView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/TextView#sharedtransitiontag"
- }
- ]
- },
- "31323": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/TextView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/TextView#sharedtransitionignore"
- }
- ]
- },
- "31324": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/TextView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#domid"
- }
- ]
- },
- "31325": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/TextView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#context"
- }
- ]
- },
- "31326": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/TextView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#isaddedtonativevisualtree"
- }
- ]
- },
- "31327": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/TextView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#cssstate"
- }
- ]
- },
- "31328": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/TextView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#stylescope"
- }
- ]
- },
- "31333": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/TextView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/TextView#suspendnativeupdatescount"
- }
- ]
- },
- "31334": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/TextView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#isstylescopehost"
- }
- ]
- },
- "31335": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/TextView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "31336": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/TextView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#left"
- }
- ]
- },
- "31337": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/TextView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#top"
- }
- ]
- },
- "31338": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/TextView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveleft"
- }
- ]
- },
- "31339": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/TextView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivetop"
- }
- ]
- },
- "31340": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/TextView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#dock"
- }
- ]
- },
- "31341": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/TextView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#row"
- }
- ]
- },
- "31342": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/TextView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#col"
- }
- ]
- },
- "31343": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/TextView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#column"
- }
- ]
- },
- "31344": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/TextView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#rowspan"
- }
- ]
- },
- "31345": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/TextView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#colspan"
- }
- ]
- },
- "31346": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/TextView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#columnspan"
- }
- ]
- },
- "31347": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/TextView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#order"
- }
- ]
- },
- "31348": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/TextView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#flexgrow"
- }
- ]
- },
- "31349": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/TextView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#flexshrink"
- }
- ]
- },
- "31350": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/TextView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#flexwrapbefore"
- }
- ]
- },
- "31351": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/TextView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#alignself"
- }
- ]
- },
- "31352": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/TextView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#oldleft"
- }
- ]
- },
- "31353": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/TextView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#oldtop"
- }
- ]
- },
- "31354": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/TextView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#oldright"
- }
- ]
- },
- "31355": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/TextView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#oldbottom"
- }
- ]
- },
- "31356": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/TextView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "31357": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/TextView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveminwidth"
- }
- ]
- },
- "31358": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/TextView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveminheight"
- }
- ]
- },
- "31359": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/TextView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivewidth"
- }
- ]
- },
- "31360": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/TextView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveheight"
- }
- ]
- },
- "31361": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/TextView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivemargintop"
- }
- ]
- },
- "31362": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/TextView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivemarginright"
- }
- ]
- },
- "31363": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/TextView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivemarginbottom"
- }
- ]
- },
- "31364": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/TextView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivemarginleft"
- }
- ]
- },
- "31365": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/TextView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivepaddingtop"
- }
- ]
- },
- "31366": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/TextView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivepaddingright"
- }
- ]
- },
- "31367": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/TextView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivepaddingbottom"
- }
- ]
- },
- "31368": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/TextView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivepaddingleft"
- }
- ]
- },
- "31369": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/TextView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectivebordertopwidth"
- }
- ]
- },
- "31370": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/TextView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveborderrightwidth"
- }
- ]
- },
- "31371": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/TextView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveborderbottomwidth"
- }
- ]
- },
- "31372": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/TextView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#effectiveborderleftwidth"
- }
- ]
- },
- "31373": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/TextView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#defaultpaddingtop"
- }
- ]
- },
- "31374": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/TextView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#defaultpaddingright"
- }
- ]
- },
- "31375": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/TextView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#defaultpaddingbottom"
- }
- ]
- },
- "31376": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/TextView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#defaultpaddingleft"
- }
- ]
- },
- "31377": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/TextView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "url": "/api/class/TextView#ispaddingrelative"
- }
- ]
- },
- "31379": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/TextView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/TextView#reusable"
- }
- ]
- },
- "31380": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/TextView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/TextView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "31384": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/TextView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/TextView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "31388": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/TextView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/TextView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "31390": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/TextView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/TextView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "31394": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/TextView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/TextView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31396": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/TextView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/TextView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "31400": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/TextView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/TextView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "31404": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/TextView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/TextView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "31408": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/TextView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/TextView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "31410": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/TextView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/TextView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31412": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/TextView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/TextView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31416": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/TextView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/TextView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31418": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/TextView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/TextView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31420": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TextView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31423": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TextView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31426": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/TextView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/TextView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "31432": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/TextView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/TextView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31434": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/TextView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/TextView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31436": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/TextView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/TextView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31439": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/TextView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/TextView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31442": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/TextView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/TextView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31446": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/TextView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/TextView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31449": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/TextView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TextView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31453": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/TextView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TextView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31457": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/TextView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/TextView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31460": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/TextView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/TextView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31462": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/TextView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/TextView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31465": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/TextView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/TextView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31468": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/TextView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/TextView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31471": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/TextView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/TextView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "31473": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/TextView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/TextView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31475": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/TextView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/TextView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31477": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/TextView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/TextView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31482": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/TextView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/TextView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31485": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/TextView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/TextView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31488": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/TextView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/TextView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31491": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/TextView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/TextView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "31494": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TextView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/TextView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31498": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TextView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/TextView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31501": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/TextView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/TextView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31505": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/TextView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/TextView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31508": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/TextView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/TextView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31511": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TextView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/TextView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31513": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/TextView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/TextView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "31517": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/TextView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/TextView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31520": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/TextView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/TextView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31522": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/TextView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/TextView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31525": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/TextView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/TextView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "31528": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/TextView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/TextView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31532": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TextView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TextView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31540": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/TextView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/TextView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31544": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/TextView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/TextView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31549": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/TextView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/TextView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31552": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/TextView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/TextView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "31557": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/TextView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/TextView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "EditableTextBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TextView.md b/content/api/class/TextView.md
deleted file mode 100644
index a6802995..00000000
--- a/content/api/class/TextView.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: TextView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TextView'
-layout: api
-seo:
- description: "Represents an editable multiline text view."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/TimePicker#layoutchangedevent"
- }
- ]
- },
- "31562": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/TimePicker#showingmodallyevent"
- }
- ]
- },
- "31563": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/TimePicker#shownmodallyevent"
- }
- ]
- },
- "31564": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityblurevent"
- }
- ]
- },
- "31565": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityfocusevent"
- }
- ]
- },
- "31566": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityfocuschangedevent"
- }
- ]
- },
- "31567": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/TimePicker#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/TimePicker#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "31576": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/TimePicker#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TimePicker#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31584": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/TimePicker#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/TimePicker#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "31590": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/TimePicker#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/TimePicker#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "31594": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#accessibilityperformescapeevent"
- }
- ]
- },
- "31595": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/TimePicker#loadedevent"
- }
- ]
- },
- "31596": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/TimePicker#unloadedevent"
- }
- ]
- },
- "31597": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/TimePicker#createdevent"
- }
- ]
- },
- "31598": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/TimePicker#disposenativeviewevent"
- }
- ]
- },
- "31599": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/TimePicker#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/TimePicker#propertychangeevent"
- }
- ]
- },
- "31600": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TimePicker#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31608": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TimePicker#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31616": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TimePicker#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31624": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TimePicker#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31632": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TimePicker#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31640": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TimePicker#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TimePicker(): TimePicker",
- "url": "/api/class/TimePicker#constructor-new-timepicker",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TimePicker"
- }
- ]
- },
- "31642": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/TimePicker#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android.widget.TimePicker](http://developer.android.com/reference/android/widget/TimePicker.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 11,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android.widget.TimePicker](http://developer.android.com/reference/android/widget/TimePicker.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/TimePicker#android"
- }
- ]
- },
- "31643": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/TimePicker#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIDatePicker](http://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIDatePicker_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 16,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native iOS [UIDatePicker](http://developer.apple.com/library/prerelease/ios/documentation/UIKit/Reference/UIDatePicker_Class/index.html) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/TimePicker#ios"
- }
- ]
- },
- "31644": {
- "name": "hour",
- "type": "Property",
- "url": "/api/class/TimePicker#hour",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the time hour."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "hour: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the time hour."
- }
- ]
- },
- "url": "/api/class/TimePicker#hour"
- }
- ]
- },
- "31645": {
- "name": "minute",
- "type": "Property",
- "url": "/api/class/TimePicker#minute",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the time minute."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minute: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 26,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the time minute."
- }
- ]
- },
- "url": "/api/class/TimePicker#minute"
- }
- ]
- },
- "31646": {
- "name": "time",
- "type": "Property",
- "url": "/api/class/TimePicker#time",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the time."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "time: Date",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the time."
- }
- ]
- },
- "url": "/api/class/TimePicker#time"
- }
- ]
- },
- "31647": {
- "name": "maxHour",
- "type": "Property",
- "url": "/api/class/TimePicker#maxhour",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the max time hour."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxHour: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 36,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the max time hour."
- }
- ]
- },
- "url": "/api/class/TimePicker#maxhour"
- }
- ]
- },
- "31648": {
- "name": "maxMinute",
- "type": "Property",
- "url": "/api/class/TimePicker#maxminute",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the max time minute."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "maxMinute: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the max time minute."
- }
- ]
- },
- "url": "/api/class/TimePicker#maxminute"
- }
- ]
- },
- "31649": {
- "name": "minHour",
- "type": "Property",
- "url": "/api/class/TimePicker#minhour",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the min time hour."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minHour: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the min time hour."
- }
- ]
- },
- "url": "/api/class/TimePicker#minhour"
- }
- ]
- },
- "31650": {
- "name": "minMinute",
- "type": "Property",
- "url": "/api/class/TimePicker#minminute",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the min time minute."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minMinute: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 51,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the min time minute."
- }
- ]
- },
- "url": "/api/class/TimePicker#minminute"
- }
- ]
- },
- "31651": {
- "name": "minuteInterval",
- "type": "Property",
- "url": "/api/class/TimePicker#minuteinterval",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minute interval."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minuteInterval: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minute interval."
- }
- ]
- },
- "url": "/api/class/TimePicker#minuteinterval"
- }
- ]
- },
- "31652": {
- "name": "iosPreferredDatePickerStyle",
- "type": "Property",
- "url": "/api/class/TimePicker#iospreferreddatepickerstyle",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIDatePickerStyle of the date picker in iOS 13.4+. Defaults to 0.\nValid values are numbers:\n - 0: automatic (system picks the concrete style based on the current platform and date picker mode)\n - 1: wheels (the date picker displays as a wheel picker)\n - 2: compact (the date picker displays as a label that when tapped displays a calendar-style editor)\n - 3: inline (the date pickers displays as an inline, editable field)"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosPreferredDatePickerStyle: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/time-picker/index.d.ts",
- "line": 66,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or set the UIDatePickerStyle of the date picker in iOS 13.4+. Defaults to 0.\nValid values are numbers:\n - 0: automatic (system picks the concrete style based on the current platform and date picker mode)\n - 1: wheels (the date picker displays as a wheel picker)\n - 2: compact (the date picker displays as a label that when tapped displays a calendar-style editor)\n - 3: inline (the date pickers displays as an inline, editable field)"
- }
- ]
- },
- "url": "/api/class/TimePicker#iospreferreddatepickerstyle"
- }
- ]
- },
- "31653": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/TimePicker#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/TimePicker#bindingcontext"
- }
- ]
- },
- "31654": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/TimePicker#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#bordercolor"
- }
- ]
- },
- "31655": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/TimePicker#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#bordertopcolor"
- }
- ]
- },
- "31656": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/TimePicker#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderrightcolor"
- }
- ]
- },
- "31657": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/TimePicker#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderbottomcolor"
- }
- ]
- },
- "31658": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/TimePicker#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderleftcolor"
- }
- ]
- },
- "31659": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderwidth"
- }
- ]
- },
- "31660": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#bordertopwidth"
- }
- ]
- },
- "31661": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderrightwidth"
- }
- ]
- },
- "31662": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderbottomwidth"
- }
- ]
- },
- "31663": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderleftwidth"
- }
- ]
- },
- "31664": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/TimePicker#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderradius"
- }
- ]
- },
- "31665": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/TimePicker#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#bordertopleftradius"
- }
- ]
- },
- "31666": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/TimePicker#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#bordertoprightradius"
- }
- ]
- },
- "31667": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/TimePicker#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderbottomrightradius"
- }
- ]
- },
- "31668": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/TimePicker#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#borderbottomleftradius"
- }
- ]
- },
- "31669": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/TimePicker#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#color"
- }
- ]
- },
- "31670": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/TimePicker#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessible"
- }
- ]
- },
- "31671": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityhidden"
- }
- ]
- },
- "31672": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityidentifier"
- }
- ]
- },
- "31673": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityrole"
- }
- ]
- },
- "31674": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilitystate"
- }
- ]
- },
- "31675": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilitylabel"
- }
- ]
- },
- "31676": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityvalue"
- }
- ]
- },
- "31677": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilityhint"
- }
- ]
- },
- "31678": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#accessibilityliveregion"
- }
- ]
- },
- "31679": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilitylanguage"
- }
- ]
- },
- "31680": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/TimePicker#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/TimePicker#accessibilitymediasession"
- }
- ]
- },
- "31681": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/TimePicker#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/TimePicker#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "31682": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/TimePicker#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TimePicker#iosaccessibilityminfontscale"
- }
- ]
- },
- "31683": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/TimePicker#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/TimePicker#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "31684": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/TimePicker#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/TimePicker#androidcontentdescriptionupdated"
- }
- ]
- },
- "31685": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/TimePicker#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#automationtext"
- }
- ]
- },
- "31686": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/TimePicker#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/TimePicker#androidelevation"
- }
- ]
- },
- "31687": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/TimePicker#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/TimePicker#androiddynamicelevationoffset"
- }
- ]
- },
- "31688": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/TimePicker#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/TimePicker#background"
- }
- ]
- },
- "31689": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/TimePicker#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#backgroundcolor"
- }
- ]
- },
- "31690": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/TimePicker#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#backgroundimage"
- }
- ]
- },
- "31691": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/TimePicker#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#boxshadow"
- }
- ]
- },
- "31692": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/TimePicker#minwidth"
- }
- ]
- },
- "31693": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/TimePicker#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/TimePicker#minheight"
- }
- ]
- },
- "31694": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/TimePicker#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#width"
- }
- ]
- },
- "31695": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/TimePicker#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#height"
- }
- ]
- },
- "31696": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/TimePicker#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/TimePicker#margin"
- }
- ]
- },
- "31697": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/TimePicker#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/TimePicker#marginleft"
- }
- ]
- },
- "31698": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/TimePicker#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/TimePicker#margintop"
- }
- ]
- },
- "31699": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/TimePicker#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/TimePicker#marginright"
- }
- ]
- },
- "31700": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/TimePicker#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/TimePicker#marginbottom"
- }
- ]
- },
- "31701": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/TimePicker#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/TimePicker#horizontalalignment"
- }
- ]
- },
- "31702": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/TimePicker#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/TimePicker#verticalalignment"
- }
- ]
- },
- "31703": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/TimePicker#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#visibility"
- }
- ]
- },
- "31704": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/TimePicker#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/TimePicker#opacity"
- }
- ]
- },
- "31705": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/TimePicker#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/TimePicker#rotate"
- }
- ]
- },
- "31706": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/TimePicker#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/TimePicker#rotatex"
- }
- ]
- },
- "31707": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/TimePicker#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/TimePicker#rotatey"
- }
- ]
- },
- "31708": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/TimePicker#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/TimePicker#perspective"
- }
- ]
- },
- "31709": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/TimePicker#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TimePicker#translatex"
- }
- ]
- },
- "31710": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/TimePicker#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/TimePicker#translatey"
- }
- ]
- },
- "31711": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/TimePicker#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#scalex"
- }
- ]
- },
- "31712": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/TimePicker#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#scaley"
- }
- ]
- },
- "31713": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/TimePicker#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#originx"
- }
- ]
- },
- "31714": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/TimePicker#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#originy"
- }
- ]
- },
- "31715": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/TimePicker#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#isenabled"
- }
- ]
- },
- "31716": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/TimePicker#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/TimePicker#isuserinteractionenabled"
- }
- ]
- },
- "31717": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/TimePicker#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TimePicker#iosoverflowsafearea"
- }
- ]
- },
- "31718": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/TimePicker#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/TimePicker#iosoverflowsafeareaenabled"
- }
- ]
- },
- "31719": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/TimePicker#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/TimePicker#iosignoresafearea"
- }
- ]
- },
- "31720": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/TimePicker#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/TimePicker#islayoutvalid"
- }
- ]
- },
- "31721": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/TimePicker#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/TimePicker#csstype"
- }
- ]
- },
- "31722": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/TimePicker#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#cssclasses"
- }
- ]
- },
- "31723": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/TimePicker#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#csspseudoclasses"
- }
- ]
- },
- "31724": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/TimePicker#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TimePicker#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31728": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/TimePicker#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/TimePicker#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31735": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/TimePicker#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/TimePicker#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "31737": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/TimePicker#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/TimePicker#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "31739": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/TimePicker#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/TimePicker#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "31741": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/TimePicker#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/TimePicker#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31745": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/TimePicker#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/TimePicker#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31751": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/TimePicker#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/TimePicker#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31755": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/TimePicker#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/TimePicker#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31761": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/TimePicker#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/TimePicker#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31763": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/TimePicker#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/TimePicker#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "31766": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/TimePicker#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TimePicker#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "31774": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/TimePicker#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TimePicker#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TimePicker#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TimePicker#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/TimePicker#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/TimePicker#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "31817": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/TimePicker#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/TimePicker#modal"
- }
- ]
- },
- "31818": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/TimePicker#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/TimePicker#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "31821": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/TimePicker#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/TimePicker#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "31824": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/TimePicker#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/TimePicker#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "31831": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/TimePicker#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/TimePicker#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "31833": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/TimePicker#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/TimePicker#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "31835": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/TimePicker#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/TimePicker#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "31838": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/TimePicker#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/TimePicker#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "31840": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/TimePicker#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/TimePicker#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31852": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/TimePicker#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/TimePicker#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "31854": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/TimePicker#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/TimePicker#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31856": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/TimePicker#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/TimePicker#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "31858": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/TimePicker#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/TimePicker#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31864": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/TimePicker#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/TimePicker#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31866": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/TimePicker#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/TimePicker#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "31868": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/TimePicker#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/TimePicker#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31870": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/TimePicker#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/TimePicker#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31876": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/TimePicker#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/TimePicker#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31879": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/TimePicker#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/TimePicker#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31882": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/TimePicker#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/TimePicker#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31951": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/TimePicker#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/TimePicker#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31957": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/TimePicker#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/TimePicker#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31962": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/TimePicker#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/TimePicker#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31964": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/TimePicker#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/TimePicker#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31966": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/TimePicker#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/TimePicker#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "31969": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/TimePicker#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/TimePicker#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "31972": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/TimePicker#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/TimePicker#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "31976": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/TimePicker#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#testid"
- }
- ]
- },
- "31977": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/TimePicker#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#touchanimation"
- }
- ]
- },
- "31978": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/TimePicker#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#ignoretouchanimation"
- }
- ]
- },
- "31979": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/TimePicker#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#touchdelay"
- }
- ]
- },
- "31980": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/TimePicker#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#closemodalcallback"
- }
- ]
- },
- "31981": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/TimePicker#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/TimePicker#transitionid"
- }
- ]
- },
- "31982": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/TimePicker#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#islayoutvalid"
- }
- ]
- },
- "31983": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/TimePicker#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/TimePicker#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "31985": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/TimePicker#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/TimePicker#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31988": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/TimePicker#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "31996": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/TimePicker#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32004": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/TimePicker#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32012": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/TimePicker#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/TimePicker#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "32015": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/TimePicker#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/TimePicker#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32018": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/TimePicker#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/TimePicker#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32022": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/TimePicker#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/TimePicker#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32028": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/TimePicker#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/TimePicker#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32030": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/TimePicker#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/TimePicker#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32032": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/TimePicker#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/TimePicker#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32034": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/TimePicker#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/TimePicker#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "32038": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/TimePicker#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/TimePicker#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "32042": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/TimePicker#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/TimePicker#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "32046": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/TimePicker#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/TimePicker#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "32050": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/TimePicker#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/TimePicker#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32052": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/TimePicker#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/TimePicker#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32058": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/TimePicker#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/TimePicker#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32060": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/TimePicker#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/TimePicker#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32064": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/TimePicker#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#domnode"
- }
- ]
- },
- "32065": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/TimePicker#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#recyclenativeview"
- }
- ]
- },
- "32066": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/TimePicker#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/TimePicker#viewcontroller"
- }
- ]
- },
- "32067": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/TimePicker#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/TimePicker#nativeviewprotected"
- }
- ]
- },
- "32068": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/TimePicker#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/TimePicker#parent"
- }
- ]
- },
- "32069": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/TimePicker#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/TimePicker#iscollapsed"
- }
- ]
- },
- "32070": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/TimePicker#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/TimePicker#id"
- }
- ]
- },
- "32071": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/TimePicker#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/TimePicker#classname"
- }
- ]
- },
- "32072": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/TimePicker#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/TimePicker#sharedtransitiontag"
- }
- ]
- },
- "32073": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/TimePicker#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/TimePicker#sharedtransitionignore"
- }
- ]
- },
- "32074": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/TimePicker#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#domid"
- }
- ]
- },
- "32075": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/TimePicker#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#context"
- }
- ]
- },
- "32076": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/TimePicker#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#isaddedtonativevisualtree"
- }
- ]
- },
- "32077": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/TimePicker#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#cssstate"
- }
- ]
- },
- "32078": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/TimePicker#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#stylescope"
- }
- ]
- },
- "32083": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/TimePicker#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/TimePicker#suspendnativeupdatescount"
- }
- ]
- },
- "32084": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/TimePicker#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#isstylescopehost"
- }
- ]
- },
- "32085": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/TimePicker#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "32086": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/TimePicker#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#left"
- }
- ]
- },
- "32087": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/TimePicker#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#top"
- }
- ]
- },
- "32088": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveleft"
- }
- ]
- },
- "32089": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivetop"
- }
- ]
- },
- "32090": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/TimePicker#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#dock"
- }
- ]
- },
- "32091": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/TimePicker#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#row"
- }
- ]
- },
- "32092": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/TimePicker#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#col"
- }
- ]
- },
- "32093": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/TimePicker#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#column"
- }
- ]
- },
- "32094": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/TimePicker#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#rowspan"
- }
- ]
- },
- "32095": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/TimePicker#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#colspan"
- }
- ]
- },
- "32096": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/TimePicker#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#columnspan"
- }
- ]
- },
- "32097": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/TimePicker#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#order"
- }
- ]
- },
- "32098": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/TimePicker#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#flexgrow"
- }
- ]
- },
- "32099": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/TimePicker#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#flexshrink"
- }
- ]
- },
- "32100": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/TimePicker#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#flexwrapbefore"
- }
- ]
- },
- "32101": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/TimePicker#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#alignself"
- }
- ]
- },
- "32102": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/TimePicker#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#oldleft"
- }
- ]
- },
- "32103": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/TimePicker#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#oldtop"
- }
- ]
- },
- "32104": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/TimePicker#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#oldright"
- }
- ]
- },
- "32105": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/TimePicker#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#oldbottom"
- }
- ]
- },
- "32106": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/TimePicker#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#ignoreflexminwidthheightreset"
- }
- ]
- },
- "32107": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveminwidth"
- }
- ]
- },
- "32108": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveminheight"
- }
- ]
- },
- "32109": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivewidth"
- }
- ]
- },
- "32110": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveheight"
- }
- ]
- },
- "32111": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivemargintop"
- }
- ]
- },
- "32112": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivemarginright"
- }
- ]
- },
- "32113": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivemarginbottom"
- }
- ]
- },
- "32114": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivemarginleft"
- }
- ]
- },
- "32115": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivepaddingtop"
- }
- ]
- },
- "32116": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivepaddingright"
- }
- ]
- },
- "32117": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivepaddingbottom"
- }
- ]
- },
- "32118": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivepaddingleft"
- }
- ]
- },
- "32119": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectivebordertopwidth"
- }
- ]
- },
- "32120": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveborderrightwidth"
- }
- ]
- },
- "32121": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveborderbottomwidth"
- }
- ]
- },
- "32122": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/TimePicker#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#effectiveborderleftwidth"
- }
- ]
- },
- "32123": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/TimePicker#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#defaultpaddingtop"
- }
- ]
- },
- "32124": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/TimePicker#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#defaultpaddingright"
- }
- ]
- },
- "32125": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/TimePicker#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#defaultpaddingbottom"
- }
- ]
- },
- "32126": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/TimePicker#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#defaultpaddingleft"
- }
- ]
- },
- "32127": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/TimePicker#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/TimePicker#ispaddingrelative"
- }
- ]
- },
- "32129": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/TimePicker#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/TimePicker#reusable"
- }
- ]
- },
- "32130": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/TimePicker#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/TimePicker#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "32134": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/TimePicker#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/TimePicker#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32138": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/TimePicker#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/TimePicker#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "32140": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/TimePicker#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/TimePicker#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "32144": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/TimePicker#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/TimePicker#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "32146": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/TimePicker#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/TimePicker#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "32150": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/TimePicker#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/TimePicker#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "32154": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/TimePicker#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/TimePicker#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "32158": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/TimePicker#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/TimePicker#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "32160": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/TimePicker#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/TimePicker#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32162": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/TimePicker#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/TimePicker#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32166": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/TimePicker#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/TimePicker#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32168": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/TimePicker#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/TimePicker#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32170": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/TimePicker#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TimePicker#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32173": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TimePicker#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/TimePicker#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32176": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/TimePicker#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/TimePicker#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "32182": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/TimePicker#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/TimePicker#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32184": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/TimePicker#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/TimePicker#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32186": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/TimePicker#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/TimePicker#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32189": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/TimePicker#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/TimePicker#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32192": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/TimePicker#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/TimePicker#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32196": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/TimePicker#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/TimePicker#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32199": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/TimePicker#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TimePicker#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32203": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/TimePicker#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/TimePicker#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32207": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/TimePicker#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/TimePicker#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32210": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/TimePicker#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/TimePicker#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "32212": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/TimePicker#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/TimePicker#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32215": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/TimePicker#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/TimePicker#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32218": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/TimePicker#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/TimePicker#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32221": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/TimePicker#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/TimePicker#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "32223": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/TimePicker#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/TimePicker#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32225": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/TimePicker#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/TimePicker#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32227": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/TimePicker#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/TimePicker#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32232": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/TimePicker#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/TimePicker#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32235": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/TimePicker#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/TimePicker#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32238": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/TimePicker#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/TimePicker#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32241": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/TimePicker#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/TimePicker#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "32244": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TimePicker#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/TimePicker#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "32248": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/TimePicker#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/TimePicker#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32251": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/TimePicker#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/TimePicker#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "32255": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/TimePicker#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/TimePicker#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32258": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/TimePicker#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/TimePicker#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32261": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/TimePicker#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/TimePicker#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32263": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/TimePicker#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/TimePicker#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "32267": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/TimePicker#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/TimePicker#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32270": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/TimePicker#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/TimePicker#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32272": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/TimePicker#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/TimePicker#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32275": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/TimePicker#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/TimePicker#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32278": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/TimePicker#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/TimePicker#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32282": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/TimePicker#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/TimePicker#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32290": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/TimePicker#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/TimePicker#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32294": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/TimePicker#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/TimePicker#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32299": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/TimePicker#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/TimePicker#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "32302": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/TimePicker#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/TimePicker#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "32307": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/TimePicker#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/TimePicker#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TimePicker.md b/content/api/class/TimePicker.md
deleted file mode 100644
index def8fe49..00000000
--- a/content/api/class/TimePicker.md
+++ /dev/null
@@ -1,204 +0,0 @@
----
-title: TimePicker
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TimePicker'
-layout: api
-seo:
- description: "Represents an time picker."
----
-
-
-
-
-
-
-enableGlobalTapAnimations: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/touch-manager.d.ts",
- "line": 21,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enable animations for all tap bindings in the UI."
- }
- ]
- },
- "url": "/api/class/TouchManager#enableglobaltapanimations"
- }
- ]
- },
- "14032": {
- "name": "animations",
- "type": "Property",
- "url": "/api/class/TouchManager#animations",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Define reusable touch animations to use on views with touchAnimation defined or with enableGlobalTapAnimations on."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "animations: TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/touch-manager.d.ts",
- "line": 25,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Define reusable touch animations to use on views with touchAnimation defined or with enableGlobalTapAnimations on."
- }
- ]
- },
- "url": "/api/class/TouchManager#animations"
- }
- ]
- },
- "14033": {
- "name": "touchHandlers",
- "type": "Property",
- "url": "/api/class/TouchManager#touchhandlers",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Native Touch handlers (iOS only) registered with the view through the TouchManager.\nThe TouchManager uses this internally but makes public for other versatility if needed."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "touchHandlers: {\n handler: any\n}[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/touch-manager.d.ts",
- "line": 30,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Native Touch handlers (iOS only) registered with the view through the TouchManager.\nThe TouchManager uses this internally but makes public for other versatility if needed."
- }
- ]
- },
- "url": "/api/class/TouchManager#touchhandlers"
- }
- ]
- },
- "14037": {
- "name": "touchAnimationDefinitions",
- "type": "Property",
- "url": "/api/class/TouchManager#touchanimationdefinitions",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When using NativeScript AnimationDefinition's for touch animations this will contain any instances for finer grain control of starting/stopping under various circumstances.\nThe TouchManager uses this internally but makes public for other versatility if needed."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "touchAnimationDefinitions: {\nanimation: Animation;\ntype: TouchAnimationTypes;\n}[]",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/touch-manager.d.ts",
- "line": 38,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When using NativeScript AnimationDefinition's for touch animations this will contain any instances for finer grain control of starting/stopping under various circumstances.\nThe TouchManager uses this internally but makes public for other versatility if needed."
- }
- ]
- },
- "url": "/api/class/TouchManager#touchanimationdefinitions"
- }
- ]
- },
- "14042": {
- "name": "addAnimations",
- "type": "Method",
- "url": "/api/class/TouchManager#addanimations",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addAnimations(view: View): void",
- "url": "/api/class/TouchManager#addanimations-addanimations-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/touch-manager.d.ts",
- "line": 48,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The TouchManager uses this internally.\nAdds touch animations to view based upon it's touchAnimation property or TouchManager.animations."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "NativeScript view instance"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14045": {
- "name": "startAnimationForType",
- "type": "Method",
- "url": "/api/class/TouchManager#startanimationfortype",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "startAnimationForType(view: View, type: TouchAnimationTypes): void",
- "url": "/api/class/TouchManager#startanimationfortype-startanimationfortype-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/gestures/touch-manager.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {}
- },
- {
- "name": "type",
- "type": "TouchAnimationTypes",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "14049": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/TouchManager#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new TouchManager(): TouchManager",
- "url": "/api/class/TouchManager#constructor-new-touchmanager",
- "parameters": [],
- "returns": "TouchManager"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/TouchManager.md b/content/api/class/TouchManager.md
deleted file mode 100644
index 1546ef9c..00000000
--- a/content/api/class/TouchManager.md
+++ /dev/null
@@ -1,136 +0,0 @@
----
-title: TouchManager
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'TouchManager'
-layout: api
-seo:
- description: "Manage interactivity in your apps easily with TouchManager.\nStore reusable down/up animation settings for touches as well as optionally enable automatic tap (down/up) animations for your app."
----
-
-
-
-
-
-
-write(message: any, category: string, type?: number): void",
- "url": "/api/class/Trace-ConsoleWriter#write-write-1",
- "sources": [
- {
- "fileName": "@nativescript/core/trace/index.d.ts",
- "line": 130,
- "character": 2
- }
- ],
- "parameters": [
- {
- "name": "message",
- "type": "any",
- "flags": {}
- },
- {
- "name": "category",
- "type": "string",
- "flags": {}
- },
- {
- "name": "type",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Trace-ConsoleWriter.md b/content/api/class/Trace-ConsoleWriter.md
deleted file mode 100644
index 52529b46..00000000
--- a/content/api/class/Trace-ConsoleWriter.md
+++ /dev/null
@@ -1,66 +0,0 @@
----
-title: Trace.ConsoleWriter
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Trace'
- href: '/api/namespace/Trace'
- - name: 'ConsoleWriter'
-layout: api
-seo:
- description: "An interface used to define a writer used by trace to print (log)."
----
-
-
-
-
-
-
-handlerError(error: any): void",
- "url": "/api/class/Trace-DefaultErrorHandler#handlererror-handlererror-1",
- "sources": [
- {
- "fileName": "@nativescript/core/trace/index.d.ts",
- "line": 134,
- "character": 2
- }
- ],
- "parameters": [
- {
- "name": "error",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Trace-DefaultErrorHandler.md b/content/api/class/Trace-DefaultErrorHandler.md
deleted file mode 100644
index ea975e13..00000000
--- a/content/api/class/Trace-DefaultErrorHandler.md
+++ /dev/null
@@ -1,66 +0,0 @@
----
-title: Trace.DefaultErrorHandler
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Trace'
- href: '/api/namespace/Trace'
- - name: 'DefaultErrorHandler'
-layout: api
-seo:
- description: "An interface used to for handling trace error"
----
-
-
-
-
-
-
-AndroidTransitionType?: {\n enter?: string\n exit?: string\n popEnter?: string\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 38,
- "character": 8
- }
- ],
- "url": "/api/class/Transition#androidtransitiontype"
- }
- ]
- },
- "32317": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Transition#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new Transition(duration?: number, nativeCurve?: any): Transition",
- "url": "/api/class/Transition#constructor-new-transition",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 39,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "duration",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "nativeCurve",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "Transition"
- }
- ]
- },
- "32321": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/Transition#id",
- "flags": {},
- "signatures": [
- {
- "code": "id: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "url": "/api/class/Transition#id"
- }
- ]
- },
- "32322": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/Transition#name",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "name?: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "(Optional) Provide a unique name to identify this transition"
- }
- ]
- },
- "url": "/api/class/Transition#name"
- }
- ]
- },
- "32323": {
- "name": "transitionController",
- "type": "Property",
- "url": "/api/class/Transition#transitioncontroller",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "transitionController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "url": "/api/class/Transition#transitioncontroller"
- }
- ]
- },
- "32324": {
- "name": "interactiveController",
- "type": "Property",
- "url": "/api/class/Transition#interactivecontroller",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "interactiveController?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 29,
- "character": 1
- }
- ],
- "url": "/api/class/Transition#interactivecontroller"
- }
- ]
- },
- "32325": {
- "name": "presented",
- "type": "Property",
- "url": "/api/class/Transition#presented",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "presented?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "url": "/api/class/Transition#presented"
- }
- ]
- },
- "32326": {
- "name": "presenting",
- "type": "Property",
- "url": "/api/class/Transition#presenting",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "presenting?: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "url": "/api/class/Transition#presenting"
- }
- ]
- },
- "32327": {
- "name": "sharedElements",
- "type": "Property",
- "url": "/api/class/Transition#sharedelements",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "sharedElements?: {\n independent?: (SharedElementSettings & {})[]\n presented?: SharedElementSettings[]\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 32,
- "character": 1
- }
- ],
- "url": "/api/class/Transition#sharedelements"
- }
- ]
- },
- "32334": {
- "name": "getDuration",
- "type": "Method",
- "url": "/api/class/Transition#getduration",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getDuration(): number",
- "url": "/api/class/Transition#getduration-getduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 40,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32336": {
- "name": "setDuration",
- "type": "Method",
- "url": "/api/class/Transition#setduration",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setDuration(value: number): void",
- "url": "/api/class/Transition#setduration-setduration-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32339": {
- "name": "getCurve",
- "type": "Method",
- "url": "/api/class/Transition#getcurve",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCurve(): any",
- "url": "/api/class/Transition#getcurve-getcurve-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 42,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32341": {
- "name": "animateIOSTransition",
- "type": "Method",
- "url": "/api/class/Transition#animateiostransition",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animateIOSTransition(\n transitionContext: any,\n fromViewCtrl: any,\n toViewCtrl: any,\n operation: any\n): void",
- "url": "/api/class/Transition#animateiostransition-animateiostransition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "transitionContext",
- "type": "any",
- "flags": {}
- },
- {
- "name": "fromViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toViewCtrl",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32347": {
- "name": "createAndroidAnimator",
- "type": "Method",
- "url": "/api/class/Transition#createandroidanimator",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAndroidAnimator(transitionType: string): any",
- "url": "/api/class/Transition#createandroidanimator-createandroidanimator-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 44,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "transitionType",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32350": {
- "name": "setupInteractiveGesture",
- "type": "Method",
- "url": "/api/class/Transition#setupinteractivegesture",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setupInteractiveGesture(startCallback: () => void, view: View): void",
- "url": "/api/class/Transition#setupinteractivegesture-setupinteractivegesture-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "startCallback",
- "type": "() => void",
- "flags": {}
- },
- {
- "name": "view",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32356": {
- "name": "iosDismissedController",
- "type": "Method",
- "url": "/api/class/Transition#iosdismissedcontroller",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosDismissedController(dismissed: any): any",
- "url": "/api/class/Transition#iosdismissedcontroller-iosdismissedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "dismissed",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32359": {
- "name": "iosPresentedController",
- "type": "Method",
- "url": "/api/class/Transition#iospresentedcontroller",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosPresentedController(presented: any, presenting: any, source: any): any",
- "url": "/api/class/Transition#iospresentedcontroller-iospresentedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "presented",
- "type": "any",
- "flags": {}
- },
- {
- "name": "presenting",
- "type": "any",
- "flags": {}
- },
- {
- "name": "source",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32364": {
- "name": "iosInteractionDismiss",
- "type": "Method",
- "url": "/api/class/Transition#iosinteractiondismiss",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionDismiss(animator: any): any",
- "url": "/api/class/Transition#iosinteractiondismiss-iosinteractiondismiss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 52,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32367": {
- "name": "iosInteractionPresented",
- "type": "Method",
- "url": "/api/class/Transition#iosinteractionpresented",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosInteractionPresented(animator: any): any",
- "url": "/api/class/Transition#iosinteractionpresented-iosinteractionpresented-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 54,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "animator",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32370": {
- "name": "iosNavigatedController",
- "type": "Method",
- "url": "/api/class/Transition#iosnavigatedcontroller",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "iosNavigatedController(\n navigationController: any,\n operation: number,\n fromVC: any,\n toVC: any\n): any",
- "url": "/api/class/Transition#iosnavigatedcontroller-iosnavigatedcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "navigationController",
- "type": "any",
- "flags": {}
- },
- {
- "name": "operation",
- "type": "number",
- "flags": {}
- },
- {
- "name": "fromVC",
- "type": "any",
- "flags": {}
- },
- {
- "name": "toVC",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "32376": {
- "name": "androidFragmentTransactionCallback",
- "type": "Method",
- "url": "/api/class/Transition#androidfragmenttransactioncallback",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "androidFragmentTransactionCallback(fragmentTransaction: any, currentEntry: BackstackEntry, newEntry: BackstackEntry): void",
- "url": "/api/class/Transition#androidfragmenttransactioncallback-androidfragmenttransactioncallback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/transition/index.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "fragmentTransaction",
- "type": "any",
- "flags": {}
- },
- {
- "name": "currentEntry",
- "type": "BackstackEntry",
- "flags": {}
- },
- {
- "name": "newEntry",
- "type": "BackstackEntry",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Transition.md b/content/api/class/Transition.md
deleted file mode 100644
index 86a86f70..00000000
--- a/content/api/class/Transition.md
+++ /dev/null
@@ -1,330 +0,0 @@
----
-title: Transition
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Transition'
-layout: api
-seo:
- description: Transition
----
-
-
-
-
-
-
-name: string",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/types.d.ts",
- "line": 104,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the class."
- }
- ]
- },
- "url": "/api/class/Utils-ClassInfo#name"
- }
- ]
- },
- "2834": {
- "name": "baseClassInfo",
- "type": "Property",
- "url": "/api/class/Utils-ClassInfo#baseclassinfo",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ClassInfo for the base class of the current info."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "baseClassInfo: ClassInfo",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/types.d.ts",
- "line": 109,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ClassInfo for the base class of the current info."
- }
- ]
- },
- "url": "/api/class/Utils-ClassInfo#baseclassinfo"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Utils-ClassInfo.md b/content/api/class/Utils-ClassInfo.md
deleted file mode 100644
index d142b4a3..00000000
--- a/content/api/class/Utils-ClassInfo.md
+++ /dev/null
@@ -1,80 +0,0 @@
----
-title: Utils.ClassInfo
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Utils'
- href: '/api/namespace/Utils'
- - name: 'ClassInfo'
-layout: api
-seo:
- description: "A Class holding information about a class"
----
-
-
-
-
-
-
-captureStackTrace(targetObject: object, constructorOpt?: Function): void",
- "url": "/api/class/Utils-ScopeError#capturestacktrace-capturestacktrace-1",
- "sources": [
- {
- "fileName": "node_modules/@types/node/ts4.8/globals.d.ts",
- "line": 4,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Create .stack property on a target object"
- }
- ]
- },
- "parameters": [
- {
- "name": "targetObject",
- "type": "object",
- "flags": {
- "isExternal": true
- }
- },
- {
- "name": "constructorOpt",
- "type": "Function",
- "flags": {
- "isExternal": true,
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2564": {
- "name": "prepareStackTrace",
- "type": "Property",
- "url": "/api/class/Utils-ScopeError#preparestacktrace",
- "flags": {
- "isStatic": true,
- "isExternal": true,
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any",
- "sources": [
- {
- "fileName": "node_modules/@types/node/ts4.8/globals.d.ts",
- "line": 11,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-ScopeError#preparestacktrace"
- }
- ]
- },
- "2569": {
- "name": "stackTraceLimit",
- "type": "Property",
- "url": "/api/class/Utils-ScopeError#stacktracelimit",
- "flags": {
- "isStatic": true,
- "isExternal": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "stackTraceLimit: number",
- "sources": [
- {
- "fileName": "node_modules/@types/node/ts4.8/globals.d.ts",
- "line": 13,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-ScopeError#stacktracelimit"
- }
- ]
- },
- "2570": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Utils-ScopeError#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ScopeError(child: Error, message?: string): ScopeError",
- "url": "/api/class/Utils-ScopeError#constructor-new-scopeerror",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/debug.d.ts",
- "line": 50,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a new ScopeError providing addtional context to the child error."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "Error",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child error to extend."
- }
- ]
- }
- },
- {
- "name": "message",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Additional message to prepend to the child error."
- }
- ]
- }
- }
- ],
- "returns": "ScopeError"
- }
- ]
- },
- "2574": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/Utils-ScopeError#name",
- "flags": {
- "isExternal": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.es5.d.ts",
- "line": 1040,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-ScopeError#name"
- }
- ]
- },
- "2575": {
- "name": "message",
- "type": "Property",
- "url": "/api/class/Utils-ScopeError#message",
- "flags": {
- "isExternal": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "message: string",
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.es5.d.ts",
- "line": 1041,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-ScopeError#message"
- }
- ]
- },
- "2576": {
- "name": "stack",
- "type": "Property",
- "url": "/api/class/Utils-ScopeError#stack",
- "flags": {
- "isExternal": true,
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "stack?: string",
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.es5.d.ts",
- "line": 1042,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-ScopeError#stack"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Utils-ScopeError.md b/content/api/class/Utils-ScopeError.md
deleted file mode 100644
index c7c65837..00000000
--- a/content/api/class/Utils-ScopeError.md
+++ /dev/null
@@ -1,50 +0,0 @@
----
-title: Utils.ScopeError
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Utils'
- href: '/api/namespace/Utils'
- - name: 'ScopeError'
-layout: api
-seo:
- description: "An Error class that provides additional context to an error."
----
-
-
-
-
-
-
-uri: string",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/debug.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the URI of the source document;"
- }
- ]
- },
- "url": "/api/class/Utils-Source#uri"
- }
- ]
- },
- "2557": {
- "name": "line",
- "type": "Property",
- "url": "/api/class/Utils-Source#line",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the line in the source document."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "line: number",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/debug.d.ts",
- "line": 23,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the line in the source document."
- }
- ]
- },
- "url": "/api/class/Utils-Source#line"
- }
- ]
- },
- "2558": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/Utils-Source#column",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the position in the source document."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/debug.d.ts",
- "line": 28,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the position in the source document."
- }
- ]
- },
- "url": "/api/class/Utils-Source#column"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Utils-Source.md b/content/api/class/Utils-Source.md
deleted file mode 100644
index c428835c..00000000
--- a/content/api/class/Utils-Source.md
+++ /dev/null
@@ -1,124 +0,0 @@
----
-title: Utils.Source
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Utils'
- href: '/api/namespace/Utils'
- - name: 'Source'
-layout: api
-seo:
- description: "A class encapsulating information for source code origin."
----
-
-
-
-
-
-
-captureStackTrace(targetObject: object, constructorOpt?: Function): void",
- "url": "/api/class/Utils-SourceError#capturestacktrace-capturestacktrace-1",
- "sources": [
- {
- "fileName": "node_modules/@types/node/ts4.8/globals.d.ts",
- "line": 4,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Create .stack property on a target object"
- }
- ]
- },
- "parameters": [
- {
- "name": "targetObject",
- "type": "object",
- "flags": {
- "isExternal": true
- }
- },
- {
- "name": "constructorOpt",
- "type": "Function",
- "flags": {
- "isExternal": true,
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "2582": {
- "name": "prepareStackTrace",
- "type": "Property",
- "url": "/api/class/Utils-SourceError#preparestacktrace",
- "flags": {
- "isStatic": true,
- "isExternal": true,
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "prepareStackTrace?: (err: Error, stackTraces: CallSite[]) => any",
- "sources": [
- {
- "fileName": "node_modules/@types/node/ts4.8/globals.d.ts",
- "line": 11,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-SourceError#preparestacktrace"
- }
- ]
- },
- "2587": {
- "name": "stackTraceLimit",
- "type": "Property",
- "url": "/api/class/Utils-SourceError#stacktracelimit",
- "flags": {
- "isStatic": true,
- "isExternal": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "stackTraceLimit: number",
- "sources": [
- {
- "fileName": "node_modules/@types/node/ts4.8/globals.d.ts",
- "line": 13,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-SourceError#stacktracelimit"
- }
- ]
- },
- "2588": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/Utils-SourceError#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new SourceError(child: Error, source: Source, message?: string): SourceError",
- "url": "/api/class/Utils-SourceError#constructor-new-sourceerror",
- "sources": [
- {
- "fileName": "@nativescript/core/utils/debug.d.ts",
- "line": 63,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a new SourceError by child error, source and optional message."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "Error",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child error to extend."
- }
- ]
- }
- },
- {
- "name": "source",
- "type": "Source",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The source where the error occured."
- }
- ]
- }
- },
- {
- "name": "message",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Additonal message to prepend along the source location and the child error's message."
- }
- ]
- }
- }
- ],
- "returns": "SourceError"
- }
- ]
- },
- "2593": {
- "name": "name",
- "type": "Property",
- "url": "/api/class/Utils-SourceError#name",
- "flags": {
- "isExternal": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "name: string",
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.es5.d.ts",
- "line": 1040,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-SourceError#name"
- }
- ]
- },
- "2594": {
- "name": "message",
- "type": "Property",
- "url": "/api/class/Utils-SourceError#message",
- "flags": {
- "isExternal": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "message: string",
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.es5.d.ts",
- "line": 1041,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-SourceError#message"
- }
- ]
- },
- "2595": {
- "name": "stack",
- "type": "Property",
- "url": "/api/class/Utils-SourceError#stack",
- "flags": {
- "isExternal": true,
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "Error"
- },
- "signatures": [
- {
- "code": "stack?: string",
- "sources": [
- {
- "fileName": "node_modules/typescript/lib/lib.es5.d.ts",
- "line": 1042,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Error"
- },
- "url": "/api/class/Utils-SourceError#stack"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/Utils-SourceError.md b/content/api/class/Utils-SourceError.md
deleted file mode 100644
index 3da15e08..00000000
--- a/content/api/class/Utils-SourceError.md
+++ /dev/null
@@ -1,50 +0,0 @@
----
-title: Utils.SourceError
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'Utils'
- href: '/api/namespace/Utils'
- - name: 'SourceError'
-layout: api
-seo:
- description: "Represents a scope error providing addiot"
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/View#layoutchangedevent"
- }
- ]
- },
- "9506": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/View#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/View#showingmodallyevent"
- }
- ]
- },
- "9507": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/View#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/View#shownmodallyevent"
- }
- ]
- },
- "9508": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/View#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/View#accessibilityblurevent"
- }
- ]
- },
- "9509": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/View#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/View#accessibilityfocusevent"
- }
- ]
- },
- "9510": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/View#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/View#accessibilityfocuschangedevent"
- }
- ]
- },
- "9511": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/View#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/View#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "9520": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/View#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/View#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9528": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/View#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/View#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "9534": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/View#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/View#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "9538": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/View#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#accessibilityperformescapeevent"
- }
- ]
- },
- "9539": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/View#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/View#loadedevent"
- }
- ]
- },
- "9540": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/View#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/View#unloadedevent"
- }
- ]
- },
- "9541": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/View#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/View#createdevent"
- }
- ]
- },
- "9542": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/View#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/View#disposenativeviewevent"
- }
- ]
- },
- "9543": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/View#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/View#propertychangeevent"
- }
- ]
- },
- "9544": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/View#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9552": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/View#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9560": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/View#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9568": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/View#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9576": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/View#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9584": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/View#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new View(): View",
- "url": "/api/class/View#constructor-new-view",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "9586": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/View#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/View#android"
- }
- ]
- },
- "9587": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/View#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/View#ios"
- }
- ]
- },
- "9588": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/View#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/View#bindingcontext"
- }
- ]
- },
- "9589": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/View#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/View#bordercolor"
- }
- ]
- },
- "9590": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/View#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/View#bordertopcolor"
- }
- ]
- },
- "9591": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/View#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/View#borderrightcolor"
- }
- ]
- },
- "9592": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/View#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/View#borderbottomcolor"
- }
- ]
- },
- "9593": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/View#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/View#borderleftcolor"
- }
- ]
- },
- "9594": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/View#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/View#borderwidth"
- }
- ]
- },
- "9595": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/View#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/View#bordertopwidth"
- }
- ]
- },
- "9596": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/View#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/View#borderrightwidth"
- }
- ]
- },
- "9597": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/View#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/View#borderbottomwidth"
- }
- ]
- },
- "9598": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/View#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/View#borderleftwidth"
- }
- ]
- },
- "9599": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/View#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/View#borderradius"
- }
- ]
- },
- "9600": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/View#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/View#bordertopleftradius"
- }
- ]
- },
- "9601": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/View#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/View#bordertoprightradius"
- }
- ]
- },
- "9602": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/View#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/View#borderbottomrightradius"
- }
- ]
- },
- "9603": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/View#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/View#borderbottomleftradius"
- }
- ]
- },
- "9604": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/View#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/View#color"
- }
- ]
- },
- "9605": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/View#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/View#accessible"
- }
- ]
- },
- "9606": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/View#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/View#accessibilityhidden"
- }
- ]
- },
- "9607": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/View#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/View#accessibilityidentifier"
- }
- ]
- },
- "9608": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/View#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/View#accessibilityrole"
- }
- ]
- },
- "9609": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/View#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/View#accessibilitystate"
- }
- ]
- },
- "9610": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/View#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/View#accessibilitylabel"
- }
- ]
- },
- "9611": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/View#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/View#accessibilityvalue"
- }
- ]
- },
- "9612": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/View#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/View#accessibilityhint"
- }
- ]
- },
- "9613": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/View#accessibilityliveregion",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "url": "/api/class/View#accessibilityliveregion"
- }
- ]
- },
- "9614": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/View#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/View#accessibilitylanguage"
- }
- ]
- },
- "9615": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/View#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/View#accessibilitymediasession"
- }
- ]
- },
- "9616": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/View#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/View#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "9617": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/View#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/View#iosaccessibilityminfontscale"
- }
- ]
- },
- "9618": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/View#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/View#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "9619": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/View#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/View#androidcontentdescriptionupdated"
- }
- ]
- },
- "9620": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/View#automationtext",
- "flags": {},
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "url": "/api/class/View#automationtext"
- }
- ]
- },
- "9621": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/View#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/View#androidelevation"
- }
- ]
- },
- "9622": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/View#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/View#androiddynamicelevationoffset"
- }
- ]
- },
- "9623": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/View#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/View#background"
- }
- ]
- },
- "9624": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/View#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/View#backgroundcolor"
- }
- ]
- },
- "9625": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/View#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/View#backgroundimage"
- }
- ]
- },
- "9626": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/View#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/View#boxshadow"
- }
- ]
- },
- "9627": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/View#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/View#minwidth"
- }
- ]
- },
- "9628": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/View#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/View#minheight"
- }
- ]
- },
- "9629": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/View#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/View#width"
- }
- ]
- },
- "9630": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/View#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/View#height"
- }
- ]
- },
- "9631": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/View#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/View#margin"
- }
- ]
- },
- "9632": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/View#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/View#marginleft"
- }
- ]
- },
- "9633": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/View#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/View#margintop"
- }
- ]
- },
- "9634": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/View#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/View#marginright"
- }
- ]
- },
- "9635": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/View#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/View#marginbottom"
- }
- ]
- },
- "9636": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/View#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/View#horizontalalignment"
- }
- ]
- },
- "9637": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/View#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/View#verticalalignment"
- }
- ]
- },
- "9638": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/View#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/View#visibility"
- }
- ]
- },
- "9639": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/View#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/View#opacity"
- }
- ]
- },
- "9640": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/View#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/View#rotate"
- }
- ]
- },
- "9641": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/View#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/View#rotatex"
- }
- ]
- },
- "9642": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/View#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/View#rotatey"
- }
- ]
- },
- "9643": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/View#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/View#perspective"
- }
- ]
- },
- "9644": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/View#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/View#translatex"
- }
- ]
- },
- "9645": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/View#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/View#translatey"
- }
- ]
- },
- "9646": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/View#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/View#scalex"
- }
- ]
- },
- "9647": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/View#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/View#scaley"
- }
- ]
- },
- "9648": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/View#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/View#originx"
- }
- ]
- },
- "9649": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/View#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/View#originy"
- }
- ]
- },
- "9650": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/View#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/View#isenabled"
- }
- ]
- },
- "9651": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/View#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/View#isuserinteractionenabled"
- }
- ]
- },
- "9652": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/View#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/View#iosoverflowsafearea"
- }
- ]
- },
- "9653": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/View#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/View#iosoverflowsafeareaenabled"
- }
- ]
- },
- "9654": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/View#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/View#iosignoresafearea"
- }
- ]
- },
- "9655": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/View#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/View#islayoutvalid"
- }
- ]
- },
- "9656": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/View#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/View#csstype"
- }
- ]
- },
- "9657": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/View#cssclasses",
- "flags": {},
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "url": "/api/class/View#cssclasses"
- }
- ]
- },
- "9658": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/View#csspseudoclasses",
- "flags": {},
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "url": "/api/class/View#csspseudoclasses"
- }
- ]
- },
- "9659": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/View#measure",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/View#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9663": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/View#layout",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/View#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9670": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/View#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/View#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "9672": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/View#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/View#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "9674": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/View#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/View#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "9676": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/View#onmeasure",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/View#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9680": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/View#onlayout",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/View#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9686": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/View#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/View#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9690": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/View#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/View#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9696": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/View#focus",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/View#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "9698": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/View#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/View#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "9701": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/View#off",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/View#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "9709": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/View#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/View#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/View#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/View#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/View#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/View#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/View#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "9752": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/View#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/View#modal"
- }
- ]
- },
- "9753": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/View#animate",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/View#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "9756": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/View#createanimation",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/View#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "9759": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/View#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/View#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "9766": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/View#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/View#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "9768": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/View#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/View#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "9770": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/View#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/View#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "9773": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/View#getactualsize",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/View#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "9775": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/View#onbackpressed",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/View#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "9787": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/View#getnativeviewscount",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/View#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "9789": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/View#closeallmodalviewsinternal",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/View#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "9791": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/View#getrootmodalviews",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/View#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "9793": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/View#eachlayoutview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/View#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9799": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/View#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/View#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9801": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/View#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/View#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "9803": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/View#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/View#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9805": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/View#eachchildview",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/View#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9811": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/View#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/View#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9814": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/View#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/View#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9817": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/View#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/View#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9886": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/View#handlelivesync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/View#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "9892": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/View#updatestylescope",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/View#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9897": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/View#onattachedtowindow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/View#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9899": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/View#ondetachedfromwindow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/View#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9901": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/View#hasancestorview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/View#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "9904": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/View#getvalue",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/View#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "9907": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/View#setvalue",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/View#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "9911": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/View#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#testid"
- }
- ]
- },
- "9912": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/View#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#touchanimation"
- }
- ]
- },
- "9913": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/View#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#ignoretouchanimation"
- }
- ]
- },
- "9914": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/View#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#touchdelay"
- }
- ]
- },
- "9915": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/View#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#closemodalcallback"
- }
- ]
- },
- "9916": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/View#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/View#transitionid"
- }
- ]
- },
- "9917": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/View#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#islayoutvalid"
- }
- ]
- },
- "9918": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/View#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/View#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9920": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/View#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/View#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9923": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/View#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/View#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9931": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/View#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9939": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/View#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9947": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/View#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/View#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "9950": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/View#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/View#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9953": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/View#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/View#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9957": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/View#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/View#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9963": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/View#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/View#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9965": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/View#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/View#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9967": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/View#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/View#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9969": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/View#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/View#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "9973": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/View#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/View#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "9977": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/View#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/View#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "9981": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/View#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/View#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "9985": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/View#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/View#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9987": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/View#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/View#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9993": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/View#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/View#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9995": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/View#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/View#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9999": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/View#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#domnode"
- }
- ]
- },
- "10000": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/View#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#recyclenativeview"
- }
- ]
- },
- "10001": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/View#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/View#viewcontroller"
- }
- ]
- },
- "10002": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/View#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/View#nativeviewprotected"
- }
- ]
- },
- "10003": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/View#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/View#parent"
- }
- ]
- },
- "10004": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/View#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/View#iscollapsed"
- }
- ]
- },
- "10005": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/View#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/View#id"
- }
- ]
- },
- "10006": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/View#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/View#classname"
- }
- ]
- },
- "10007": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/View#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/View#sharedtransitiontag"
- }
- ]
- },
- "10008": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/View#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/View#sharedtransitionignore"
- }
- ]
- },
- "10009": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/View#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#domid"
- }
- ]
- },
- "10010": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/View#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#context"
- }
- ]
- },
- "10011": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/View#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#isaddedtonativevisualtree"
- }
- ]
- },
- "10012": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/View#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#cssstate"
- }
- ]
- },
- "10013": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/View#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#stylescope"
- }
- ]
- },
- "10018": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/View#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/View#suspendnativeupdatescount"
- }
- ]
- },
- "10019": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/View#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#isstylescopehost"
- }
- ]
- },
- "10020": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/View#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "10021": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/View#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#left"
- }
- ]
- },
- "10022": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/View#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#top"
- }
- ]
- },
- "10023": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/View#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveleft"
- }
- ]
- },
- "10024": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/View#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivetop"
- }
- ]
- },
- "10025": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/View#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#dock"
- }
- ]
- },
- "10026": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/View#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#row"
- }
- ]
- },
- "10027": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/View#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#col"
- }
- ]
- },
- "10028": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/View#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#column"
- }
- ]
- },
- "10029": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/View#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#rowspan"
- }
- ]
- },
- "10030": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/View#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#colspan"
- }
- ]
- },
- "10031": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/View#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#columnspan"
- }
- ]
- },
- "10032": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/View#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#order"
- }
- ]
- },
- "10033": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/View#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#flexgrow"
- }
- ]
- },
- "10034": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/View#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#flexshrink"
- }
- ]
- },
- "10035": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/View#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#flexwrapbefore"
- }
- ]
- },
- "10036": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/View#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#alignself"
- }
- ]
- },
- "10037": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/View#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#oldleft"
- }
- ]
- },
- "10038": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/View#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#oldtop"
- }
- ]
- },
- "10039": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/View#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#oldright"
- }
- ]
- },
- "10040": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/View#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#oldbottom"
- }
- ]
- },
- "10041": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/View#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#ignoreflexminwidthheightreset"
- }
- ]
- },
- "10042": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/View#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveminwidth"
- }
- ]
- },
- "10043": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/View#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveminheight"
- }
- ]
- },
- "10044": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/View#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivewidth"
- }
- ]
- },
- "10045": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/View#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveheight"
- }
- ]
- },
- "10046": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/View#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivemargintop"
- }
- ]
- },
- "10047": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/View#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivemarginright"
- }
- ]
- },
- "10048": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/View#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivemarginbottom"
- }
- ]
- },
- "10049": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/View#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivemarginleft"
- }
- ]
- },
- "10050": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/View#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivepaddingtop"
- }
- ]
- },
- "10051": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/View#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivepaddingright"
- }
- ]
- },
- "10052": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/View#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivepaddingbottom"
- }
- ]
- },
- "10053": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/View#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivepaddingleft"
- }
- ]
- },
- "10054": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/View#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectivebordertopwidth"
- }
- ]
- },
- "10055": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/View#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveborderrightwidth"
- }
- ]
- },
- "10056": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/View#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveborderbottomwidth"
- }
- ]
- },
- "10057": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/View#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#effectiveborderleftwidth"
- }
- ]
- },
- "10058": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/View#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#defaultpaddingtop"
- }
- ]
- },
- "10059": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/View#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#defaultpaddingright"
- }
- ]
- },
- "10060": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/View#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#defaultpaddingbottom"
- }
- ]
- },
- "10061": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/View#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#defaultpaddingleft"
- }
- ]
- },
- "10062": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/View#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "url": "/api/class/View#ispaddingrelative"
- }
- ]
- },
- "10064": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/View#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/View#reusable"
- }
- ]
- },
- "10065": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/View#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/View#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "10069": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/View#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/View#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "10073": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/View#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/View#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10075": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/View#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/View#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "10079": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/View#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/View#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10081": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/View#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/View#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10085": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/View#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/View#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "10089": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/View#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/View#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "10093": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/View#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/View#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "10095": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/View#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/View#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10097": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/View#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/View#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10101": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/View#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/View#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10103": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/View#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/View#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10105": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/View#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/View#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10108": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/View#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/View#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10111": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/View#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/View#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "10117": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/View#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/View#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10119": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/View#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/View#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10121": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/View#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/View#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10124": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/View#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/View#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10127": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/View#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/View#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10131": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/View#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/View#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10134": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/View#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/View#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10138": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/View#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/View#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10142": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/View#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/View#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10145": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/View#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/View#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "10147": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/View#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/View#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10150": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/View#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/View#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10153": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/View#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/View#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10156": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/View#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/View#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "10158": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/View#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/View#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10160": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/View#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/View#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10162": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/View#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/View#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10167": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/View#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/View#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10170": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/View#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/View#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10173": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/View#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/View#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10176": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/View#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/View#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "10179": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/View#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/View#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10183": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/View#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/View#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10186": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/View#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/View#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10190": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/View#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/View#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10193": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/View#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/View#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10196": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/View#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/View#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10198": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/View#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/View#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "10202": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/View#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/View#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10205": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/View#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/View#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10207": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/View#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/View#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "10210": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/View#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/View#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "10213": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/View#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/View#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10217": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/View#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/View#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10225": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/View#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/View#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10229": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/View#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/View#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "10234": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/View#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/View#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "10237": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/View#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/View#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "10242": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/View#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/View#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewCommon"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/View.md b/content/api/class/View.md
deleted file mode 100644
index 10a29cd7..00000000
--- a/content/api/class/View.md
+++ /dev/null
@@ -1,1774 +0,0 @@
----
-title: View
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'View'
-layout: api
-seo:
- description: "This class is the base class for all UI components.\nA View occupies a rectangular area on the screen and is responsible for drawing and layouting of all UI components within."
----
-
-
-
-
-
-
-loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ViewBase#loadedevent"
- }
- ]
- },
- "9080": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ViewBase#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ViewBase#unloadedevent"
- }
- ]
- },
- "9081": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ViewBase#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ViewBase#createdevent"
- }
- ]
- },
- "9082": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ViewBase#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ViewBase#disposenativeviewevent"
- }
- ]
- },
- "9083": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ViewBase#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ViewBase#propertychangeevent"
- }
- ]
- },
- "9084": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ViewBase#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9092": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ViewBase#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9100": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ViewBase#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9108": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ViewBase#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9116": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ViewBase#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9124": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ViewBase#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ViewBase(): ViewBase",
- "url": "/api/class/ViewBase#constructor-new-viewbase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "9135": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ViewBase#domnode",
- "flags": {},
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#domnode"
- }
- ]
- },
- "9136": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ViewBase#recyclenativeview",
- "flags": {},
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#recyclenativeview"
- }
- ]
- },
- "9137": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ViewBase#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ViewBase#viewcontroller"
- }
- ]
- },
- "9138": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ViewBase#bindingcontext",
- "flags": {},
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#bindingcontext"
- }
- ]
- },
- "9139": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ViewBase#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ViewBase#nativeviewprotected"
- }
- ]
- },
- "9140": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ViewBase#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ViewBase#parent"
- }
- ]
- },
- "9141": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ViewBase#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ViewBase#iscollapsed"
- }
- ]
- },
- "9142": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ViewBase#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ViewBase#id"
- }
- ]
- },
- "9143": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ViewBase#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ViewBase#classname"
- }
- ]
- },
- "9144": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ViewBase#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ViewBase#sharedtransitiontag"
- }
- ]
- },
- "9145": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ViewBase#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ViewBase#sharedtransitionignore"
- }
- ]
- },
- "9146": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ViewBase#domid",
- "flags": {},
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#domid"
- }
- ]
- },
- "9147": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ViewBase#context",
- "flags": {},
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#context"
- }
- ]
- },
- "9148": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ViewBase#isaddedtonativevisualtree",
- "flags": {},
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#isaddedtonativevisualtree"
- }
- ]
- },
- "9149": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ViewBase#cssstate",
- "flags": {},
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#cssstate"
- }
- ]
- },
- "9150": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ViewBase#stylescope",
- "flags": {},
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#stylescope"
- }
- ]
- },
- "9155": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ViewBase#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ViewBase#suspendnativeupdatescount"
- }
- ]
- },
- "9156": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ViewBase#isstylescopehost",
- "flags": {},
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#isstylescopehost"
- }
- ]
- },
- "9157": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ViewBase#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "9158": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ViewBase#left",
- "flags": {},
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#left"
- }
- ]
- },
- "9159": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ViewBase#top",
- "flags": {},
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#top"
- }
- ]
- },
- "9160": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveleft",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveleft"
- }
- ]
- },
- "9161": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivetop",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivetop"
- }
- ]
- },
- "9162": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ViewBase#dock",
- "flags": {},
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#dock"
- }
- ]
- },
- "9163": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ViewBase#row",
- "flags": {},
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#row"
- }
- ]
- },
- "9164": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ViewBase#col",
- "flags": {},
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#col"
- }
- ]
- },
- "9165": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ViewBase#column",
- "flags": {},
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#column"
- }
- ]
- },
- "9166": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ViewBase#rowspan",
- "flags": {},
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#rowspan"
- }
- ]
- },
- "9167": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ViewBase#colspan",
- "flags": {},
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#colspan"
- }
- ]
- },
- "9168": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ViewBase#columnspan",
- "flags": {},
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#columnspan"
- }
- ]
- },
- "9169": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ViewBase#order",
- "flags": {},
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#order"
- }
- ]
- },
- "9170": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ViewBase#flexgrow",
- "flags": {},
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#flexgrow"
- }
- ]
- },
- "9171": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ViewBase#flexshrink",
- "flags": {},
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#flexshrink"
- }
- ]
- },
- "9172": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ViewBase#flexwrapbefore",
- "flags": {},
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#flexwrapbefore"
- }
- ]
- },
- "9173": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ViewBase#alignself",
- "flags": {},
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#alignself"
- }
- ]
- },
- "9174": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ViewBase#oldleft",
- "flags": {},
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#oldleft"
- }
- ]
- },
- "9175": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ViewBase#oldtop",
- "flags": {},
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#oldtop"
- }
- ]
- },
- "9176": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ViewBase#oldright",
- "flags": {},
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#oldright"
- }
- ]
- },
- "9177": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ViewBase#oldbottom",
- "flags": {},
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#oldbottom"
- }
- ]
- },
- "9178": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ViewBase#ignoreflexminwidthheightreset",
- "flags": {},
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#ignoreflexminwidthheightreset"
- }
- ]
- },
- "9179": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveminwidth",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveminwidth"
- }
- ]
- },
- "9180": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveminheight",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveminheight"
- }
- ]
- },
- "9181": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivewidth",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivewidth"
- }
- ]
- },
- "9182": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveheight",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveheight"
- }
- ]
- },
- "9183": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivemargintop",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivemargintop"
- }
- ]
- },
- "9184": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivemarginright",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivemarginright"
- }
- ]
- },
- "9185": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivemarginbottom",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivemarginbottom"
- }
- ]
- },
- "9186": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivemarginleft",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivemarginleft"
- }
- ]
- },
- "9187": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivepaddingtop",
- "flags": {},
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivepaddingtop"
- }
- ]
- },
- "9188": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivepaddingright",
- "flags": {},
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivepaddingright"
- }
- ]
- },
- "9189": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivepaddingbottom",
- "flags": {},
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivepaddingbottom"
- }
- ]
- },
- "9190": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivepaddingleft",
- "flags": {},
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivepaddingleft"
- }
- ]
- },
- "9191": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ViewBase#effectivebordertopwidth",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectivebordertopwidth"
- }
- ]
- },
- "9192": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveborderrightwidth",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveborderrightwidth"
- }
- ]
- },
- "9193": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveborderbottomwidth",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveborderbottomwidth"
- }
- ]
- },
- "9194": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ViewBase#effectiveborderleftwidth",
- "flags": {},
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#effectiveborderleftwidth"
- }
- ]
- },
- "9195": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ViewBase#defaultpaddingtop",
- "flags": {},
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#defaultpaddingtop"
- }
- ]
- },
- "9196": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ViewBase#defaultpaddingright",
- "flags": {},
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#defaultpaddingright"
- }
- ]
- },
- "9197": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ViewBase#defaultpaddingbottom",
- "flags": {},
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#defaultpaddingbottom"
- }
- ]
- },
- "9198": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ViewBase#defaultpaddingleft",
- "flags": {},
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#defaultpaddingleft"
- }
- ]
- },
- "9199": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ViewBase#ispaddingrelative",
- "flags": {},
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#ispaddingrelative"
- }
- ]
- },
- "9201": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ViewBase#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ViewBase#reusable"
- }
- ]
- },
- "9202": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ViewBase#parentnode",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ViewBase#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "9206": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ViewBase#nativeview",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ViewBase#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "9210": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ViewBase#typename",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ViewBase#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "9212": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ViewBase#style",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ViewBase#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "9216": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/ViewBase#android",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/ViewBase#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 280,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "9218": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/ViewBase#ios",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/ViewBase#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 281,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "9220": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ViewBase#isloaded",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ViewBase#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "9222": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ViewBase#class",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ViewBase#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "9226": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ViewBase#getviewbyid",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ViewBase#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "9230": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ViewBase#getviewbydomid",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ViewBase#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "9234": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ViewBase#page",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ViewBase#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "9236": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ViewBase#ensuredomnode",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ViewBase#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9238": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ViewBase#set",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ViewBase#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9242": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ViewBase#onloaded",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ViewBase#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 303,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9244": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ViewBase#onunloaded",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ViewBase#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9246": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ViewBase#layoutparent",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ViewBase#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9248": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ViewBase#suspendnativeupdates",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ViewBase#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9251": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ViewBase#resumenativeupdates",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ViewBase#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9254": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ViewBase#batchupdate",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ViewBase#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "9263": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ViewBase#callloaded",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ViewBase#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9265": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ViewBase#callunloaded",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ViewBase#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9269": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ViewBase#cssclasses",
- "flags": {},
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#cssclasses"
- }
- ]
- },
- "9270": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ViewBase#csspseudoclasses",
- "flags": {},
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "url": "/api/class/ViewBase#csspseudoclasses"
- }
- ]
- },
- "9272": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ViewBase#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ViewBase#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9275": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ViewBase#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ViewBase#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9282": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ViewBase#bind",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ViewBase#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9286": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ViewBase#unbind",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ViewBase#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9290": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ViewBase#requestlayout",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ViewBase#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 344,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Invalidates the layout of the view and triggers a new layout pass."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9292": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ViewBase#eachchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ViewBase#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 349,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type ViewBase."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type ViewBase. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9298": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ViewBase#addview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ViewBase#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9302": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ViewBase#addviewcore",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ViewBase#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9306": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ViewBase#loadview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ViewBase#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9309": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ViewBase#shoulddelaylayout",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ViewBase#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "9311": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ViewBase#unloadview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ViewBase#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9314": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ViewBase#removeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ViewBase#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9317": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ViewBase#removeviewcore",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ViewBase#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9320": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ViewBase#createnativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ViewBase#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "9322": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ViewBase#disposenativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ViewBase#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9324": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ViewBase#initnativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ViewBase#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9326": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ViewBase#resetnativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ViewBase#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 394,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Resets properties/listeners set to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9329": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ViewBase#setupasrootview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ViewBase#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 396,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9332": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ViewBase#setupui",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ViewBase#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9337": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ViewBase#setnativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ViewBase#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9340": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ViewBase#destroynode",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ViewBase#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9343": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ViewBase#teardownui",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ViewBase#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9346": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ViewBase#childindextonativechildindex",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ViewBase#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "9349": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ViewBase#addviewtonativevisualtree",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ViewBase#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "9353": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ViewBase#removeviewfromnativevisualtree",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ViewBase#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9356": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/ViewBase#gotovisualstate",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/ViewBase#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9359": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ViewBase#applyxmlattribute",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ViewBase#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "9363": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ViewBase#setinlinestyle",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ViewBase#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9366": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ViewBase#parentchanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ViewBase#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9369": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ViewBase#onresumenativeupdates",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ViewBase#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9371": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ViewBase#tostring",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ViewBase#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "9375": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ViewBase#inheritstylescope",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ViewBase#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9378": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ViewBase#showmodal",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(view: ViewBase, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/ViewBase#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 453,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the view passed as parameter as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "View instance to be shown modally."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- },
- {
- "type": "CallSignature",
- "code": "showModal(moduleName: string, modalOptions?: ShowModalOptions): ViewBase",
- "url": "/api/class/ViewBase#showmodal-showmodal-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 459,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shows the View contained in moduleName as a modal view."
- }
- ]
- },
- "parameters": [
- {
- "name": "moduleName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the module to load starting from the application root."
- }
- ]
- }
- },
- {
- "name": "modalOptions",
- "type": "ShowModalOptions",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A ShowModalOptions instance"
- }
- ]
- }
- }
- ],
- "returns": "ViewBase"
- }
- ]
- },
- "9385": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ViewBase#closemodal",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ViewBase#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 464,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Closes the current modal view that this page is showing."
- }
- ]
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9388": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ViewBase#dialogclosed",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ViewBase#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9390": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ViewBase#onrootviewreset",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ViewBase#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "9393": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ViewBase#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ViewBase#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "9396": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ViewBase#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ViewBase#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9400": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ViewBase#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9408": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ViewBase#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9416": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ViewBase#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9424": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ViewBase#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9432": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ViewBase#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewBase#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9440": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ViewBase#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ViewBase#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9444": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ViewBase#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ViewBase#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "9449": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ViewBase#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ViewBase#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "9452": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ViewBase#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ViewBase#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "9457": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ViewBase#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ViewBase#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ViewBase.md b/content/api/class/ViewBase.md
deleted file mode 100644
index c7340fd6..00000000
--- a/content/api/class/ViewBase.md
+++ /dev/null
@@ -1,1802 +0,0 @@
----
-title: ViewBase
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ViewBase'
-layout: api
-seo:
- description: ViewBase
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 18,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#layoutchangedevent"
- }
- ]
- },
- "3": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#shownmodallyevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 19,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#shownmodallyevent"
- }
- ]
- },
- "4": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#showingmodallyevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 20,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#showingmodallyevent"
- }
- ]
- },
- "5": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityblurevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 21,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityblurevent"
- }
- ]
- },
- "6": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityfocusevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 22,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityfocusevent"
- }
- ]
- },
- "7": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityfocuschangedevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 23,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityfocuschangedevent"
- }
- ]
- },
- "8": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityperformescapeevent"
- }
- ]
- },
- "9": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/ViewCommon#resolvesizeandstate",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ViewCommon#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "15": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ViewCommon#combinemeasuredstates",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ViewCommon#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "19": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/ViewCommon#layoutchild",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number, setFrame?: boolean): void",
- "url": "/api/class/ViewCommon#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {}
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "28": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/ViewCommon#measurechild",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: ViewCommon, child: ViewCommon, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/ViewCommon#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "child",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "37": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/ViewCommon#loadedevent"
- }
- ]
- },
- "38": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/ViewCommon#unloadedevent"
- }
- ]
- },
- "39": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/ViewCommon#createdevent"
- }
- ]
- },
- "40": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/ViewCommon#disposenativeviewevent"
- }
- ]
- },
- "41": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/ViewCommon#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/ViewCommon#propertychangeevent"
- }
- ]
- },
- "42": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ViewCommon#on-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#on-2-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "50": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ViewCommon#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "58": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ViewCommon#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "66": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ViewCommon#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "74": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ViewCommon#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "82": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ViewCommon#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ViewCommon(): ViewCommon",
- "url": "/api/class/ViewCommon#constructor-new-viewcommon",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "ViewCommon"
- }
- ]
- },
- "84": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityidentifier",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 25,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityidentifier"
- }
- ]
- },
- "85": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilitylabel",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 26,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#accessibilitylabel"
- }
- ]
- },
- "86": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityvalue",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 27,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityvalue"
- }
- ]
- },
- "87": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/ViewCommon#accessibilityhint",
- "flags": {},
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 28,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#accessibilityhint"
- }
- ]
- },
- "88": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/ViewCommon#testid",
- "flags": {},
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#testid"
- }
- ]
- },
- "89": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/ViewCommon#touchanimation",
- "flags": {},
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#touchanimation"
- }
- ]
- },
- "90": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/ViewCommon#ignoretouchanimation",
- "flags": {},
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#ignoretouchanimation"
- }
- ]
- },
- "91": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/ViewCommon#touchdelay",
- "flags": {},
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#touchdelay"
- }
- ]
- },
- "92": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/ViewCommon#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "url": "/api/class/ViewCommon#closemodalcallback"
- }
- ]
- },
- "93": {
- "name": "_manager",
- "type": "Property",
- "url": "/api/class/ViewCommon#manager",
- "flags": {},
- "signatures": [
- {
- "code": "_manager: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 34,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#manager"
- }
- ]
- },
- "94": {
- "name": "_modalParent",
- "type": "Property",
- "url": "/api/class/ViewCommon#modalparent",
- "flags": {},
- "signatures": [
- {
- "code": "_modalParent: ViewCommon",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 35,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#modalparent"
- }
- ]
- },
- "97": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/ViewCommon#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/ViewCommon#transitionid"
- }
- ]
- },
- "100": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/ViewCommon#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "url": "/api/class/ViewCommon#islayoutvalid"
- }
- ]
- },
- "103": {
- "name": "_currentWidthMeasureSpec",
- "type": "Property",
- "url": "/api/class/ViewCommon#currentwidthmeasurespec",
- "flags": {},
- "signatures": [
- {
- "code": "_currentWidthMeasureSpec: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 47,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#currentwidthmeasurespec"
- }
- ]
- },
- "104": {
- "name": "_currentHeightMeasureSpec",
- "type": "Property",
- "url": "/api/class/ViewCommon#currentheightmeasurespec",
- "flags": {},
- "signatures": [
- {
- "code": "_currentHeightMeasureSpec: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 48,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#currentheightmeasurespec"
- }
- ]
- },
- "105": {
- "name": "_setMinWidthNative",
- "type": "Property",
- "url": "/api/class/ViewCommon#setminwidthnative",
- "flags": {},
- "signatures": [
- {
- "code": "_setMinWidthNative: (value: LengthType) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#setminwidthnative"
- }
- ]
- },
- "109": {
- "name": "_setMinHeightNative",
- "type": "Property",
- "url": "/api/class/ViewCommon#setminheightnative",
- "flags": {},
- "signatures": [
- {
- "code": "_setMinHeightNative: (value: LengthType) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 50,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#setminheightnative"
- }
- ]
- },
- "113": {
- "name": "_gestureObservers",
- "type": "Property",
- "url": "/api/class/ViewCommon#gestureobservers",
- "flags": {},
- "signatures": [
- {
- "code": "_gestureObservers: {}",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 51,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#gestureobservers"
- }
- ]
- },
- "115": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/ViewCommon#androidcontentdescriptionupdated",
- "flags": {
- "isOptional": true
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 52,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#androidcontentdescriptionupdated"
- }
- ]
- },
- "116": {
- "name": "css",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#css",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get css(): string",
- "url": "/api/class/ViewCommon#css-css-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 53,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "120": {
- "name": "addCss",
- "type": "Method",
- "url": "/api/class/ViewCommon#addcss",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addCss(cssString: string): void",
- "url": "/api/class/ViewCommon#addcss-addcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 55,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cssString",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "123": {
- "name": "addCssFile",
- "type": "Method",
- "url": "/api/class/ViewCommon#addcssfile",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addCssFile(cssFileName: string): void",
- "url": "/api/class/ViewCommon#addcssfile-addcssfile-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 56,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "126": {
- "name": "changeCssFile",
- "type": "Method",
- "url": "/api/class/ViewCommon#changecssfile",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "changeCssFile(cssFileName: string): void",
- "url": "/api/class/ViewCommon#changecssfile-changecssfile-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 57,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "129": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/ViewCommon#updatestylescope",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/ViewCommon#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 58,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "135": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/ViewCommon#onloaded",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/ViewCommon#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "137": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/ViewCommon#closeallmodalviewsinternal",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/ViewCommon#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 61,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "139": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/ViewCommon#getrootmodalviews",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/ViewCommon#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 62,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "141": {
- "name": "_onLivesync",
- "type": "Method",
- "url": "/api/class/ViewCommon#onlivesync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onLivesync(context?: ModuleContext): boolean",
- "url": "/api/class/ViewCommon#onlivesync-onlivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "ModuleContext",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "144": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/ViewCommon#handlelivesync",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: ModuleContext): boolean",
- "url": "/api/class/ViewCommon#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 64,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "ModuleContext",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "147": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/ViewCommon#setupasrootview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/ViewCommon#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "150": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/ViewCommon#observe",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "158": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/ViewCommon#getgestureobservers",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/ViewCommon#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 67,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "161": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/ViewCommon#addeventlistener",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "169": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/ViewCommon#removeeventlistener",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "177": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/ViewCommon#onbackpressed",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/ViewCommon#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 70,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "179": {
- "name": "_getFragmentManager",
- "type": "Method",
- "url": "/api/class/ViewCommon#getfragmentmanager",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getFragmentManager(): any",
- "url": "/api/class/ViewCommon#getfragmentmanager-getfragmentmanager-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 71,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "182": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/ViewCommon#showmodal",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/ViewCommon#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "185": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/ViewCommon#closemodal",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/ViewCommon#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "188": {
- "name": "modal",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#modal",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get modal(): ViewCommon",
- "url": "/api/class/ViewCommon#modal-modal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 75,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "ViewCommon"
- }
- ]
- },
- "190": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/ViewCommon#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/ViewCommon#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "194": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/ViewCommon#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/ViewCommon#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "200": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/ViewCommon#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/ViewCommon#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "202": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/ViewCommon#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/ViewCommon#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "204": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/ViewCommon#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/ViewCommon#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "208": {
- "name": "borderColor",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#bordercolor",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderColor(): string | Color",
- "url": "/api/class/ViewCommon#bordercolor-bordercolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 83,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string | Color"
- }
- ]
- },
- "212": {
- "name": "borderTopColor",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#bordertopcolor",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderTopColor(): Color",
- "url": "/api/class/ViewCommon#bordertopcolor-bordertopcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 85,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "216": {
- "name": "borderRightColor",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderrightcolor",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderRightColor(): Color",
- "url": "/api/class/ViewCommon#borderrightcolor-borderrightcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 87,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "220": {
- "name": "borderBottomColor",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderbottomcolor",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderBottomColor(): Color",
- "url": "/api/class/ViewCommon#borderbottomcolor-borderbottomcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 89,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "224": {
- "name": "borderLeftColor",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderleftcolor",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderLeftColor(): Color",
- "url": "/api/class/ViewCommon#borderleftcolor-borderleftcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 91,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "228": {
- "name": "borderWidth",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderwidth",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderWidth(): string | number | LengthDipUnit | LengthPxUnit",
- "url": "/api/class/ViewCommon#borderwidth-borderwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 93,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string | number | LengthDipUnit | LengthPxUnit"
- }
- ]
- },
- "232": {
- "name": "borderTopWidth",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#bordertopwidth",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderTopWidth(): LengthType",
- "url": "/api/class/ViewCommon#bordertopwidth-bordertopwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 95,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "236": {
- "name": "borderRightWidth",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderrightwidth",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderRightWidth(): LengthType",
- "url": "/api/class/ViewCommon#borderrightwidth-borderrightwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 97,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "240": {
- "name": "borderBottomWidth",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderbottomwidth",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderBottomWidth(): LengthType",
- "url": "/api/class/ViewCommon#borderbottomwidth-borderbottomwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "244": {
- "name": "borderLeftWidth",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderleftwidth",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderLeftWidth(): LengthType",
- "url": "/api/class/ViewCommon#borderleftwidth-borderleftwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 101,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "248": {
- "name": "borderRadius",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderradius",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderRadius(): string | number | LengthDipUnit | LengthPxUnit",
- "url": "/api/class/ViewCommon#borderradius-borderradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 103,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string | number | LengthDipUnit | LengthPxUnit"
- }
- ]
- },
- "252": {
- "name": "borderTopLeftRadius",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#bordertopleftradius",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderTopLeftRadius(): LengthType",
- "url": "/api/class/ViewCommon#bordertopleftradius-bordertopleftradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 105,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "256": {
- "name": "borderTopRightRadius",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#bordertoprightradius",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderTopRightRadius(): LengthType",
- "url": "/api/class/ViewCommon#bordertoprightradius-bordertoprightradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 107,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "260": {
- "name": "borderBottomRightRadius",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderbottomrightradius",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderBottomRightRadius(): LengthType",
- "url": "/api/class/ViewCommon#borderbottomrightradius-borderbottomrightradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 109,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "264": {
- "name": "borderBottomLeftRadius",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#borderbottomleftradius",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get borderBottomLeftRadius(): LengthType",
- "url": "/api/class/ViewCommon#borderbottomleftradius-borderbottomleftradius-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 111,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "268": {
- "name": "color",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#color",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get color(): Color",
- "url": "/api/class/ViewCommon#color-color-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 113,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "272": {
- "name": "background",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#background",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get background(): string",
- "url": "/api/class/ViewCommon#background-background-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 115,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "276": {
- "name": "backgroundColor",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#backgroundcolor",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundColor(): Color",
- "url": "/api/class/ViewCommon#backgroundcolor-backgroundcolor-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Color"
- }
- ]
- },
- "280": {
- "name": "backgroundImage",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#backgroundimage",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundImage(): string | LinearGradient",
- "url": "/api/class/ViewCommon#backgroundimage-backgroundimage-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 119,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string | LinearGradient"
- }
- ]
- },
- "284": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#backgroundsize",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/ViewCommon#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "288": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#backgroundposition",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/ViewCommon#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "292": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#backgroundrepeat",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/ViewCommon#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "296": {
- "name": "boxShadow",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#boxshadow",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get boxShadow(): CSSShadow",
- "url": "/api/class/ViewCommon#boxshadow-boxshadow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "CSSShadow"
- }
- ]
- },
- "300": {
- "name": "minWidth",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#minwidth",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get minWidth(): LengthType",
- "url": "/api/class/ViewCommon#minwidth-minwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "304": {
- "name": "minHeight",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#minheight",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get minHeight(): LengthType",
- "url": "/api/class/ViewCommon#minheight-minheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 131,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "LengthType"
- }
- ]
- },
- "308": {
- "name": "width",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#width",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get width(): PercentLengthType",
- "url": "/api/class/ViewCommon#width-width-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 133,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "PercentLengthType"
- }
- ]
- },
- "312": {
- "name": "height",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#height",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get height(): PercentLengthType",
- "url": "/api/class/ViewCommon#height-height-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 135,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "PercentLengthType"
- }
- ]
- },
- "316": {
- "name": "margin",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#margin",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get margin(): string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "url": "/api/class/ViewCommon#margin-margin-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 137,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit"
- }
- ]
- },
- "320": {
- "name": "marginLeft",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#marginleft",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get marginLeft(): PercentLengthType",
- "url": "/api/class/ViewCommon#marginleft-marginleft-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 139,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "PercentLengthType"
- }
- ]
- },
- "324": {
- "name": "marginTop",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#margintop",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get marginTop(): PercentLengthType",
- "url": "/api/class/ViewCommon#margintop-margintop-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 141,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "PercentLengthType"
- }
- ]
- },
- "328": {
- "name": "marginRight",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#marginright",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get marginRight(): PercentLengthType",
- "url": "/api/class/ViewCommon#marginright-marginright-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 143,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "PercentLengthType"
- }
- ]
- },
- "332": {
- "name": "marginBottom",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#marginbottom",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get marginBottom(): PercentLengthType",
- "url": "/api/class/ViewCommon#marginbottom-marginbottom-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "PercentLengthType"
- }
- ]
- },
- "336": {
- "name": "horizontalAlignment",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#horizontalalignment",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get horizontalAlignment(): HorizontalAlignmentType",
- "url": "/api/class/ViewCommon#horizontalalignment-horizontalalignment-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 147,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "HorizontalAlignmentType"
- }
- ]
- },
- "340": {
- "name": "verticalAlignment",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#verticalalignment",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get verticalAlignment(): VerticalAlignmentType",
- "url": "/api/class/ViewCommon#verticalalignment-verticalalignment-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "VerticalAlignmentType"
- }
- ]
- },
- "344": {
- "name": "visibility",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#visibility",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get visibility(): VisibilityType",
- "url": "/api/class/ViewCommon#visibility-visibility-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 151,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "VisibilityType"
- }
- ]
- },
- "348": {
- "name": "opacity",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#opacity",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get opacity(): number",
- "url": "/api/class/ViewCommon#opacity-opacity-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 153,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "352": {
- "name": "rotate",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#rotate",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get rotate(): number",
- "url": "/api/class/ViewCommon#rotate-rotate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "356": {
- "name": "rotateX",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#rotatex",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get rotateX(): number",
- "url": "/api/class/ViewCommon#rotatex-rotatex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 157,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "360": {
- "name": "rotateY",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#rotatey",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get rotateY(): number",
- "url": "/api/class/ViewCommon#rotatey-rotatey-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "364": {
- "name": "perspective",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#perspective",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get perspective(): number",
- "url": "/api/class/ViewCommon#perspective-perspective-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 161,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "368": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#texttransform",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/ViewCommon#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "372": {
- "name": "translateX",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#translatex",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get translateX(): number",
- "url": "/api/class/ViewCommon#translatex-translatex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 165,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "376": {
- "name": "translateY",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#translatey",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get translateY(): number",
- "url": "/api/class/ViewCommon#translatey-translatey-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 167,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "380": {
- "name": "scaleX",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#scalex",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get scaleX(): number",
- "url": "/api/class/ViewCommon#scalex-scalex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "384": {
- "name": "scaleY",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#scaley",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get scaleY(): number",
- "url": "/api/class/ViewCommon#scaley-scaley-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 171,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "388": {
- "name": "accessible",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessible",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessible(): boolean",
- "url": "/api/class/ViewCommon#accessible-accessible-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "392": {
- "name": "accessibilityHidden",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessibilityhidden",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessibilityHidden(): boolean",
- "url": "/api/class/ViewCommon#accessibilityhidden-accessibilityhidden-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 175,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "396": {
- "name": "accessibilityRole",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessibilityrole",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessibilityRole(): AccessibilityRole",
- "url": "/api/class/ViewCommon#accessibilityrole-accessibilityrole-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "AccessibilityRole"
- }
- ]
- },
- "400": {
- "name": "accessibilityState",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessibilitystate",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessibilityState(): AccessibilityState",
- "url": "/api/class/ViewCommon#accessibilitystate-accessibilitystate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 179,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "AccessibilityState"
- }
- ]
- },
- "404": {
- "name": "accessibilityLiveRegion",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessibilityliveregion",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessibilityLiveRegion(): AccessibilityLiveRegion",
- "url": "/api/class/ViewCommon#accessibilityliveregion-accessibilityliveregion-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "AccessibilityLiveRegion"
- }
- ]
- },
- "408": {
- "name": "accessibilityLanguage",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessibilitylanguage",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessibilityLanguage(): string",
- "url": "/api/class/ViewCommon#accessibilitylanguage-accessibilitylanguage-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 183,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "412": {
- "name": "accessibilityMediaSession",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#accessibilitymediasession",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get accessibilityMediaSession(): boolean",
- "url": "/api/class/ViewCommon#accessibilitymediasession-accessibilitymediasession-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "416": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#iosaccessibilityadjustsfontsize",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get iosAccessibilityAdjustsFontSize(): boolean",
- "url": "/api/class/ViewCommon#iosaccessibilityadjustsfontsize-iosaccessibilityadjustsfontsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "420": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#iosaccessibilityminfontscale",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get iosAccessibilityMinFontScale(): number",
- "url": "/api/class/ViewCommon#iosaccessibilityminfontscale-iosaccessibilityminfontscale-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "424": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#iosaccessibilitymaxfontscale",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get iosAccessibilityMaxFontScale(): number",
- "url": "/api/class/ViewCommon#iosaccessibilitymaxfontscale-iosaccessibilitymaxfontscale-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 191,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "428": {
- "name": "automationText",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#automationtext",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get automationText(): string",
- "url": "/api/class/ViewCommon#automationtext-automationtext-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 193,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "432": {
- "name": "androidElevation",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#androidelevation",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get androidElevation(): number",
- "url": "/api/class/ViewCommon#androidelevation-androidelevation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 195,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "436": {
- "name": "androidDynamicElevationOffset",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#androiddynamicelevationoffset",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get androidDynamicElevationOffset(): number",
- "url": "/api/class/ViewCommon#androiddynamicelevationoffset-androiddynamicelevationoffset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 197,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "440": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/ViewCommon#originx",
- "flags": {},
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 199,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#originx"
- }
- ]
- },
- "441": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/ViewCommon#originy",
- "flags": {},
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 200,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#originy"
- }
- ]
- },
- "442": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/ViewCommon#isenabled",
- "flags": {},
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 201,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#isenabled"
- }
- ]
- },
- "443": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/ViewCommon#isuserinteractionenabled",
- "flags": {},
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 202,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#isuserinteractionenabled"
- }
- ]
- },
- "444": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/ViewCommon#iosoverflowsafearea",
- "flags": {},
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 203,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#iosoverflowsafearea"
- }
- ]
- },
- "445": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/ViewCommon#iosoverflowsafeareaenabled",
- "flags": {},
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 204,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#iosoverflowsafeareaenabled"
- }
- ]
- },
- "446": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/ViewCommon#iosignoresafearea",
- "flags": {},
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 205,
- "character": 4
- }
- ],
- "url": "/api/class/ViewCommon#iosignoresafearea"
- }
- ]
- },
- "447": {
- "name": "isLayoutValid",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#islayoutvalid",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLayoutValid(): boolean",
- "url": "/api/class/ViewCommon#islayoutvalid-islayoutvalid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 206,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "449": {
- "name": "cssType",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#csstype",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get cssType(): string",
- "url": "/api/class/ViewCommon#csstype-csstype-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 207,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "453": {
- "name": "isLayoutRequired",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#islayoutrequired",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLayoutRequired(): boolean",
- "url": "/api/class/ViewCommon#islayoutrequired-islayoutrequired-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "455": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/ViewCommon#measure",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ViewCommon#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "459": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/ViewCommon#layout",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ViewCommon#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "465": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/ViewCommon#getmeasuredwidth",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/ViewCommon#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "467": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/ViewCommon#getmeasuredheight",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/ViewCommon#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "469": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/ViewCommon#getmeasuredstate",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/ViewCommon#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "471": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/ViewCommon#setmeasureddimension",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/ViewCommon#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {}
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "475": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/ViewCommon#requestlayout",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/ViewCommon#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "477": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/ViewCommon#onmeasure",
- "flags": {
- "isAbstract": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/ViewCommon#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "481": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/ViewCommon#onlayout",
- "flags": {
- "isAbstract": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/ViewCommon#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "487": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#layoutnativeview",
- "flags": {
- "isAbstract": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/ViewCommon#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "493": {
- "name": "_setCurrentMeasureSpecs",
- "type": "Method",
- "url": "/api/class/ViewCommon#setcurrentmeasurespecs",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setCurrentMeasureSpecs(\n widthMeasureSpec: number,\n heightMeasureSpec: number\n): boolean",
- "url": "/api/class/ViewCommon#setcurrentmeasurespecs-setcurrentmeasurespecs-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "497": {
- "name": "_getCurrentLayoutBounds",
- "type": "Method",
- "url": "/api/class/ViewCommon#getcurrentlayoutbounds",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getCurrentLayoutBounds(): {\n bottom: number\n left: number\n right: number\n}",
- "url": "/api/class/ViewCommon#getcurrentlayoutbounds-getcurrentlayoutbounds-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "{\n bottom: number\n left: number\n right: number\n}"
- }
- ]
- },
- "504": {
- "name": "_setCurrentLayoutBounds",
- "type": "Method",
- "url": "/api/class/ViewCommon#setcurrentlayoutbounds",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setCurrentLayoutBounds(\n left: number,\n top: number,\n right: number,\n bottom: number\n): {\n boundsChanged: boolean\n}",
- "url": "/api/class/ViewCommon#setcurrentlayoutbounds-setcurrentlayoutbounds-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns two booleans - the first if \"boundsChanged\" the second is \"sizeChanged\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n boundsChanged: boolean\n}"
- }
- ]
- },
- "513": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/ViewCommon#eachchild",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/ViewCommon#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "519": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/ViewCommon#eachchildview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/ViewCommon#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "525": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/ViewCommon#getnativeviewscount",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/ViewCommon#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "527": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/ViewCommon#eachlayoutview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/ViewCommon#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "533": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/ViewCommon#focus",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/ViewCommon#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "535": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/ViewCommon#getsafeareainsets",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/ViewCommon#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "542": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/ViewCommon#getlocationinwindow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/ViewCommon#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "544": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/ViewCommon#getlocationonscreen",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/ViewCommon#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 253,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "546": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/ViewCommon#getlocationrelativeto",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/ViewCommon#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 254,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "549": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/ViewCommon#getactualsize",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/ViewCommon#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 255,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "551": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/ViewCommon#animate",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(animation: any): AnimationPromise",
- "url": "/api/class/ViewCommon#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 256,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "animation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "554": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/ViewCommon#createanimation",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(animation: any): Animation",
- "url": "/api/class/ViewCommon#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 257,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "animation",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "557": {
- "name": "_removeAnimation",
- "type": "Method",
- "url": "/api/class/ViewCommon#removeanimation",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeAnimation(animation: Animation): boolean",
- "url": "/api/class/ViewCommon#removeanimation-removeanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 258,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "animation",
- "type": "Animation",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "560": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#resetnativeview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/ViewCommon#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "562": {
- "name": "_setNativeViewFrame",
- "type": "Method",
- "url": "/api/class/ViewCommon#setnativeviewframe",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setNativeViewFrame(nativeView: any, frame: any): void",
- "url": "/api/class/ViewCommon#setnativeviewframe-setnativeviewframe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 260,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "nativeView",
- "type": "any",
- "flags": {}
- },
- {
- "name": "frame",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "566": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/ViewCommon#getvalue",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(): never",
- "url": "/api/class/ViewCommon#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 261,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "never"
- }
- ]
- },
- "568": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/ViewCommon#setvalue",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(): never",
- "url": "/api/class/ViewCommon#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "never"
- }
- ]
- },
- "570": {
- "name": "_updateEffectiveLayoutValues",
- "type": "Method",
- "url": "/api/class/ViewCommon#updateeffectivelayoutvalues",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateEffectiveLayoutValues(\n parentWidthMeasureSize: number,\n parentWidthMeasureMode: number,\n parentHeightMeasureSize: number,\n parentHeightMeasureMode: number\n): void",
- "url": "/api/class/ViewCommon#updateeffectivelayoutvalues-updateeffectivelayoutvalues-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "parentWidthMeasureSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "parentWidthMeasureMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "parentHeightMeasureSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "parentHeightMeasureMode",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "576": {
- "name": "_setNativeClipToBounds",
- "type": "Method",
- "url": "/api/class/ViewCommon#setnativecliptobounds",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setNativeClipToBounds(): void",
- "url": "/api/class/ViewCommon#setnativecliptobounds-setnativecliptobounds-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 264,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "578": {
- "name": "_redrawNativeBackground",
- "type": "Method",
- "url": "/api/class/ViewCommon#redrawnativebackground",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_redrawNativeBackground(value: any): void",
- "url": "/api/class/ViewCommon#redrawnativebackground-redrawnativebackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 265,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "581": {
- "name": "_applyBackground",
- "type": "Method",
- "url": "/api/class/ViewCommon#applybackground",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyBackground(\n background: any,\n isBorderDrawable: boolean,\n onlyColor: boolean,\n backgroundDrawable: any\n): void",
- "url": "/api/class/ViewCommon#applybackground-applybackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 266,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "background",
- "type": "any",
- "flags": {}
- },
- {
- "name": "isBorderDrawable",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "onlyColor",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "backgroundDrawable",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "587": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/ViewCommon#onattachedtowindow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/ViewCommon#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "589": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/ViewCommon#ondetachedfromwindow",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/ViewCommon#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 268,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "591": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/ViewCommon#hasancestorview",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/ViewCommon#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "594": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/ViewCommon#sendaccessibilityevent",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/ViewCommon#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 270,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "597": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/ViewCommon#accessibilityannouncement",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/ViewCommon#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 271,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "600": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/ViewCommon#accessibilityscreenchanged",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/ViewCommon#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 272,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "602": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/ViewCommon#settestid",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/ViewCommon#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "606": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/ViewCommon#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#domnode"
- }
- ]
- },
- "607": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/ViewCommon#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#recyclenativeview"
- }
- ]
- },
- "608": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/ViewCommon#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/ViewCommon#viewcontroller"
- }
- ]
- },
- "609": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/ViewCommon#bindingcontext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#bindingcontext"
- }
- ]
- },
- "610": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/ViewCommon#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/ViewCommon#nativeviewprotected"
- }
- ]
- },
- "611": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/ViewCommon#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/ViewCommon#parent"
- }
- ]
- },
- "612": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/ViewCommon#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/ViewCommon#iscollapsed"
- }
- ]
- },
- "613": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/ViewCommon#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/ViewCommon#id"
- }
- ]
- },
- "614": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/ViewCommon#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/ViewCommon#classname"
- }
- ]
- },
- "615": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/ViewCommon#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/ViewCommon#sharedtransitiontag"
- }
- ]
- },
- "616": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/ViewCommon#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/ViewCommon#sharedtransitionignore"
- }
- ]
- },
- "617": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/ViewCommon#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#domid"
- }
- ]
- },
- "618": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/ViewCommon#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#context"
- }
- ]
- },
- "619": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/ViewCommon#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#isaddedtonativevisualtree"
- }
- ]
- },
- "620": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/ViewCommon#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#cssstate"
- }
- ]
- },
- "621": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/ViewCommon#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#stylescope"
- }
- ]
- },
- "626": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/ViewCommon#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/ViewCommon#suspendnativeupdatescount"
- }
- ]
- },
- "627": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/ViewCommon#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#isstylescopehost"
- }
- ]
- },
- "628": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/ViewCommon#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "629": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/ViewCommon#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#left"
- }
- ]
- },
- "630": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/ViewCommon#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#top"
- }
- ]
- },
- "631": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveleft"
- }
- ]
- },
- "632": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivetop"
- }
- ]
- },
- "633": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/ViewCommon#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#dock"
- }
- ]
- },
- "634": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/ViewCommon#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#row"
- }
- ]
- },
- "635": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/ViewCommon#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#col"
- }
- ]
- },
- "636": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/ViewCommon#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#column"
- }
- ]
- },
- "637": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/ViewCommon#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#rowspan"
- }
- ]
- },
- "638": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/ViewCommon#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#colspan"
- }
- ]
- },
- "639": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/ViewCommon#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#columnspan"
- }
- ]
- },
- "640": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/ViewCommon#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#order"
- }
- ]
- },
- "641": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/ViewCommon#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#flexgrow"
- }
- ]
- },
- "642": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/ViewCommon#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#flexshrink"
- }
- ]
- },
- "643": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/ViewCommon#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#flexwrapbefore"
- }
- ]
- },
- "644": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/ViewCommon#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#alignself"
- }
- ]
- },
- "645": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/ViewCommon#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#oldleft"
- }
- ]
- },
- "646": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/ViewCommon#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#oldtop"
- }
- ]
- },
- "647": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/ViewCommon#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#oldright"
- }
- ]
- },
- "648": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/ViewCommon#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#oldbottom"
- }
- ]
- },
- "649": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/ViewCommon#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#ignoreflexminwidthheightreset"
- }
- ]
- },
- "650": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveminwidth"
- }
- ]
- },
- "651": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveminheight"
- }
- ]
- },
- "652": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivewidth"
- }
- ]
- },
- "653": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveheight"
- }
- ]
- },
- "654": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivemargintop"
- }
- ]
- },
- "655": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivemarginright"
- }
- ]
- },
- "656": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivemarginbottom"
- }
- ]
- },
- "657": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivemarginleft"
- }
- ]
- },
- "658": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivepaddingtop"
- }
- ]
- },
- "659": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivepaddingright"
- }
- ]
- },
- "660": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivepaddingbottom"
- }
- ]
- },
- "661": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivepaddingleft"
- }
- ]
- },
- "662": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectivebordertopwidth"
- }
- ]
- },
- "663": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveborderrightwidth"
- }
- ]
- },
- "664": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveborderbottomwidth"
- }
- ]
- },
- "665": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/ViewCommon#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#effectiveborderleftwidth"
- }
- ]
- },
- "666": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/ViewCommon#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#defaultpaddingtop"
- }
- ]
- },
- "667": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/ViewCommon#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#defaultpaddingright"
- }
- ]
- },
- "668": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/ViewCommon#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#defaultpaddingbottom"
- }
- ]
- },
- "669": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/ViewCommon#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#defaultpaddingleft"
- }
- ]
- },
- "670": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/ViewCommon#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#ispaddingrelative"
- }
- ]
- },
- "672": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/ViewCommon#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/ViewCommon#reusable"
- }
- ]
- },
- "673": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/ViewCommon#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "677": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/ViewCommon#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "681": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/ViewCommon#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "683": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/ViewCommon#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "687": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#android",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): any",
- "url": "/api/class/ViewCommon#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 280,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "689": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#ios",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): any",
- "url": "/api/class/ViewCommon#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 281,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "691": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/ViewCommon#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "693": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/ViewCommon#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "697": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/ViewCommon#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/ViewCommon#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "701": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/ViewCommon#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/ViewCommon#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "705": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/ViewCommon#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/ViewCommon#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "707": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/ViewCommon#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/ViewCommon#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "709": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/ViewCommon#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/ViewCommon#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "713": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/ViewCommon#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/ViewCommon#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "715": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/ViewCommon#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/ViewCommon#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "717": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/ViewCommon#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ViewCommon#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "720": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ViewCommon#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/ViewCommon#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "723": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/ViewCommon#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/ViewCommon#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "729": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/ViewCommon#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/ViewCommon#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "731": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/ViewCommon#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/ViewCommon#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "733": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/ViewCommon#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 319,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#cssclasses"
- }
- ]
- },
- "734": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/ViewCommon#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 320,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "url": "/api/class/ViewCommon#csspseudoclasses"
- }
- ]
- },
- "735": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/ViewCommon#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/ViewCommon#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "738": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/ViewCommon#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/ViewCommon#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "741": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/ViewCommon#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/ViewCommon#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "745": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/ViewCommon#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/ViewCommon#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "748": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/ViewCommon#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ViewCommon#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "752": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/ViewCommon#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/ViewCommon#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "756": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/ViewCommon#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/ViewCommon#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "759": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/ViewCommon#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/ViewCommon#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "761": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/ViewCommon#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/ViewCommon#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "764": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/ViewCommon#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "767": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/ViewCommon#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/ViewCommon#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "770": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/ViewCommon#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "772": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/ViewCommon#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "774": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/ViewCommon#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "776": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/ViewCommon#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/ViewCommon#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "781": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/ViewCommon#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/ViewCommon#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "784": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/ViewCommon#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/ViewCommon#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "787": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/ViewCommon#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/ViewCommon#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "790": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/ViewCommon#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/ViewCommon#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "793": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ViewCommon#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/ViewCommon#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "797": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/ViewCommon#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/ViewCommon#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "800": {
- "name": "_goToVisualState",
- "type": "Method",
- "url": "/api/class/ViewCommon#gotovisualstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_goToVisualState(state: string): void",
- "url": "/api/class/ViewCommon#gotovisualstate-gotovisualstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 429,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "state",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "803": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/ViewCommon#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/ViewCommon#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "807": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/ViewCommon#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/ViewCommon#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "810": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/ViewCommon#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/ViewCommon#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "813": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/ViewCommon#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/ViewCommon#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "815": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/ViewCommon#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/ViewCommon#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "819": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/ViewCommon#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/ViewCommon#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "822": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/ViewCommon#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/ViewCommon#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "824": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/ViewCommon#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/ViewCommon#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "827": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/ViewCommon#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/ViewCommon#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "830": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/ViewCommon#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/ViewCommon#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "834": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/ViewCommon#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 99,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "842": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/ViewCommon#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "850": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/ViewCommon#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/ViewCommon#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "858": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/ViewCommon#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/ViewCommon#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "862": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/ViewCommon#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/ViewCommon#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "867": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/ViewCommon#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/ViewCommon#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "870": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/ViewCommon#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/ViewCommon#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "875": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/ViewCommon#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/ViewCommon#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ViewBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ViewCommon.md b/content/api/class/ViewCommon.md
deleted file mode 100644
index e6159496..00000000
--- a/content/api/class/ViewCommon.md
+++ /dev/null
@@ -1,2348 +0,0 @@
----
-title: ViewCommon
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ViewCommon'
-layout: api
-seo:
- description: ViewCommon
----
-
-
-
-
-
-
-resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/ViewHelper#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-helper/index.d.ts",
- "line": 31,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "11013": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/ViewHelper#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/ViewHelper#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-helper/index.d.ts",
- "line": 33,
- "character": 1
- }
- ],
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "11017": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/ViewHelper#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new ViewHelper(): ViewHelper",
- "url": "/api/class/ViewHelper#constructor-new-viewhelper",
- "parameters": [],
- "returns": "ViewHelper"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/ViewHelper.md b/content/api/class/ViewHelper.md
deleted file mode 100644
index ff7d7a6f..00000000
--- a/content/api/class/ViewHelper.md
+++ /dev/null
@@ -1,104 +0,0 @@
----
-title: ViewHelper
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'ViewHelper'
-layout: api
-seo:
- description: ViewHelper
----
-
-
-
-
-
-
-changeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 23,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to change event."
- }
- ]
- },
- "url": "/api/class/VirtualArray#changeevent"
- }
- ]
- },
- "1572": {
- "name": "itemsLoadingEvent",
- "type": "Property",
- "url": "/api/class/VirtualArray#itemsloadingevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to itemsLoading event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "code": "itemsLoadingEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 27,
- "character": 11
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to itemsLoading event."
- }
- ]
- },
- "url": "/api/class/VirtualArray#itemsloadingevent"
- }
- ]
- },
- "1573": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/VirtualArray#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "propertyChangeEvent",
- "url": "/api/class/Observable#propertychangeevent",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/VirtualArray#propertychangeevent"
- }
- ]
- },
- "1574": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/VirtualArray#on-4",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#on-4-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1582": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/VirtualArray#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1590": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/VirtualArray#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1598": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/VirtualArray#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1606": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/VirtualArray#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener-2",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1614": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/VirtualArray#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new VirtualArray<T>(length?: number): VirtualArray<T>",
- "url": "/api/class/VirtualArray#constructor-new-virtualarray",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "length",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "VirtualArray<T>"
- }
- ]
- },
- "1622": {
- "name": "length",
- "type": "Accessor",
- "url": "/api/class/VirtualArray#length",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get length(): number",
- "url": "/api/class/VirtualArray#length-length-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 36,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets length for the virtual array."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "1627": {
- "name": "loadSize",
- "type": "Accessor",
- "url": "/api/class/VirtualArray#loadsize",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get loadSize(): number",
- "url": "/api/class/VirtualArray#loadsize-loadsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 42,
- "character": 4
- }
- ],
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "1631": {
- "name": "getItem",
- "type": "Method",
- "url": "/api/class/VirtualArray#getitem",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getItem(index: number): T",
- "url": "/api/class/VirtualArray#getitem-getitem-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "1634": {
- "name": "setItem",
- "type": "Method",
- "url": "/api/class/VirtualArray#setitem",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setItem(index: number, value: T): void",
- "url": "/api/class/VirtualArray#setitem-setitem-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 45,
- "character": 4
- }
- ],
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {}
- },
- {
- "name": "value",
- "type": "T",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1638": {
- "name": "load",
- "type": "Method",
- "url": "/api/class/VirtualArray#load",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "load(index: number, items: T[]): void",
- "url": "/api/class/VirtualArray#load-load-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Loads items from an array starting at index."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {}
- },
- {
- "name": "items",
- "type": "T[]",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1643": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/VirtualArray#on",
- "flags": {},
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 59,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/Observable#on",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"itemsLoading\", callback: (args: ItemsLoading) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when still not loaded items are requested."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"itemsLoading\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ItemsLoading) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"change\", callback: (args: ChangedData<T>) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/virtual-array/index.d.ts",
- "line": 67,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a change occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"change\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ChangedData<T>) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1666": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/VirtualArray#get",
- "flags": {},
- "inheritedFrom": {
- "name": "get",
- "url": "/api/class/Observable#get",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/VirtualArray#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "get",
- "url": "/api/class/Observable#get",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1669": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/VirtualArray#set",
- "flags": {},
- "inheritedFrom": {
- "name": "set",
- "url": "/api/class/Observable#set",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/VirtualArray#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 88,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "set",
- "url": "/api/class/Observable#set",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1673": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/VirtualArray#setproperty",
- "flags": {},
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/VirtualArray#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setProperty",
- "url": "/api/class/Observable#setproperty",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1677": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/VirtualArray#once",
- "flags": {},
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/Observable#once",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1685": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/VirtualArray#off",
- "flags": {},
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 110,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/Observable#off",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Shortcut alias to the removeEventListener method."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1693": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/VirtualArray#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 117,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addEventListener",
- "url": "/api/class/Observable#addeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds a listener for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events to attach the listener to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when some of the specified event(s) is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1701": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/VirtualArray#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventNames: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/VirtualArray#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 124,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "removeEventListener",
- "url": "/api/class/Observable#removeeventlistener",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1709": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/VirtualArray#notify",
- "flags": {},
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/VirtualArray#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/Observable#notify",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1713": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/VirtualArray#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/VirtualArray#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notifyPropertyChange",
- "url": "/api/class/Observable#notifypropertychange",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "1718": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/VirtualArray#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/VirtualArray#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/Observable#haslisteners",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "1721": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/VirtualArray#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/VirtualArray#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_createPropertyChangeData",
- "url": "/api/class/Observable#createpropertychangedata",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "1726": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/VirtualArray#emit",
- "flags": {},
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/VirtualArray#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "_emit",
- "url": "/api/class/Observable#emit",
- "fromName": "Observable",
- "fromUrl": "/api/class/Observable"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/VirtualArray.md b/content/api/class/VirtualArray.md
deleted file mode 100644
index 8ccde2ce..00000000
--- a/content/api/class/VirtualArray.md
+++ /dev/null
@@ -1,152 +0,0 @@
----
-title: VirtualArray
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'VirtualArray'
-layout: api
-seo:
- description: "Advanced array like class that helps loading items on demand."
----
-
-
-
-
-
-
-loadStartedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 26,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loadStarted event."
- }
- ]
- },
- "url": "/api/class/WebView#loadstartedevent"
- }
- ]
- },
- "32771": {
- "name": "loadFinishedEvent",
- "type": "Property",
- "url": "/api/class/WebView#loadfinishedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loadFinished event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "signatures": [
- {
- "code": "loadFinishedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 31,
- "character": 15
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loadFinished event."
- }
- ]
- },
- "url": "/api/class/WebView#loadfinishedevent"
- }
- ]
- },
- "32772": {
- "name": "layoutChangedEvent",
- "type": "Property",
- "url": "/api/class/WebView#layoutchangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/WebView#layoutchangedevent"
- }
- ]
- },
- "32773": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/WebView#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/WebView#showingmodallyevent"
- }
- ]
- },
- "32774": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/WebView#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/WebView#shownmodallyevent"
- }
- ]
- },
- "32775": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityblurevent"
- }
- ]
- },
- "32776": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityfocusevent"
- }
- ]
- },
- "32777": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityfocuschangedevent"
- }
- ]
- },
- "32778": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/WebView#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/WebView#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "32787": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/WebView#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/WebView#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32795": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/WebView#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/WebView#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "32801": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/WebView#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/WebView#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "32805": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#accessibilityperformescapeevent"
- }
- ]
- },
- "32806": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/WebView#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/WebView#loadedevent"
- }
- ]
- },
- "32807": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/WebView#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/WebView#unloadedevent"
- }
- ]
- },
- "32808": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/WebView#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/WebView#createdevent"
- }
- ]
- },
- "32809": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/WebView#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/WebView#disposenativeviewevent"
- }
- ]
- },
- "32810": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/WebView#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/WebView#propertychangeevent"
- }
- ]
- },
- "32811": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/WebView#on-4",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#on-4-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32819": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/WebView#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32827": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/WebView#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32835": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/WebView#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32843": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/WebView#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32851": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/WebView#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new WebView(): WebView",
- "url": "/api/class/WebView#constructor-new-webview",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "WebView"
- }
- ]
- },
- "32853": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/WebView#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/webkit/WebView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 36,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [android widget](http://developer.android.com/reference/android/webkit/WebView.html) that represents the user interface for this component. Valid only when running on Android OS."
- }
- ]
- },
- "url": "/api/class/WebView#android"
- }
- ]
- },
- "32854": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/WebView#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [WKWebView](https://developer.apple.com/documentation/webkit/wkwebview/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 41,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the native [WKWebView](https://developer.apple.com/documentation/webkit/wkwebview/) that represents the user interface for this component. Valid only when running on iOS."
- }
- ]
- },
- "url": "/api/class/WebView#ios"
- }
- ]
- },
- "32855": {
- "name": "src",
- "type": "Property",
- "url": "/api/class/WebView#src",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the url, local file path or HTML string."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "src: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 46,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the url, local file path or HTML string."
- }
- ]
- },
- "url": "/api/class/WebView#src"
- }
- ]
- },
- "32856": {
- "name": "canGoBack",
- "type": "Property",
- "url": "/api/class/WebView#cangoback",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating whether the WebView can navigate back."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "canGoBack: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 51,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating whether the WebView can navigate back."
- }
- ]
- },
- "url": "/api/class/WebView#cangoback"
- }
- ]
- },
- "32857": {
- "name": "canGoForward",
- "type": "Property",
- "url": "/api/class/WebView#cangoforward",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating whether the WebView can navigate forward."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "canGoForward: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 56,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets a value indicating whether the WebView can navigate forward."
- }
- ]
- },
- "url": "/api/class/WebView#cangoforward"
- }
- ]
- },
- "32858": {
- "name": "disableZoom",
- "type": "Property",
- "url": "/api/class/WebView#disablezoom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Disable scrolling in the WebView"
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "disableZoom: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 61,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Disable scrolling in the WebView"
- }
- ]
- },
- "url": "/api/class/WebView#disablezoom"
- }
- ]
- },
- "32859": {
- "name": "iosAllowInlineMediaPlayback",
- "type": "Property",
- "url": "/api/class/WebView#iosallowinlinemediaplayback",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables inline media playback on iOS.\nBy default, webview forces iPhone into fullscreen media playback."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "iosAllowInlineMediaPlayback: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 67,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables inline media playback on iOS.\nBy default, webview forces iPhone into fullscreen media playback."
- }
- ]
- },
- "url": "/api/class/WebView#iosallowinlinemediaplayback"
- }
- ]
- },
- "32860": {
- "name": "stopLoading",
- "type": "Method",
- "url": "/api/class/WebView#stoploading",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "stopLoading(): void",
- "url": "/api/class/WebView#stoploading-stoploading-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 72,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Stops loading the current content (if any)."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "32862": {
- "name": "goBack",
- "type": "Method",
- "url": "/api/class/WebView#goback",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "goBack(): any",
- "url": "/api/class/WebView#goback-goback-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 77,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Navigates back."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32864": {
- "name": "goForward",
- "type": "Method",
- "url": "/api/class/WebView#goforward",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "goForward(): any",
- "url": "/api/class/WebView#goforward-goforward-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 82,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Navigates forward."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32866": {
- "name": "reload",
- "type": "Method",
- "url": "/api/class/WebView#reload",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "reload(): any",
- "url": "/api/class/WebView#reload-reload-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 87,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Reloads the current url."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "32868": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/WebView#on",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 95,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\")."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loadFinished\", callback: (args: LoadEventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 100,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loadFinished event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loadFinished\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: LoadEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loadStarted\", callback: (args: LoadEventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/web-view/index.d.ts",
- "line": 105,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loadStarted event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loadStarted\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: LoadEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32890": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/WebView#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/WebView#bindingcontext"
- }
- ]
- },
- "32891": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/WebView#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#bordercolor"
- }
- ]
- },
- "32892": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/WebView#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#bordertopcolor"
- }
- ]
- },
- "32893": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/WebView#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderrightcolor"
- }
- ]
- },
- "32894": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/WebView#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderbottomcolor"
- }
- ]
- },
- "32895": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/WebView#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderleftcolor"
- }
- ]
- },
- "32896": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/WebView#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderwidth"
- }
- ]
- },
- "32897": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/WebView#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/WebView#bordertopwidth"
- }
- ]
- },
- "32898": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/WebView#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderrightwidth"
- }
- ]
- },
- "32899": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/WebView#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderbottomwidth"
- }
- ]
- },
- "32900": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/WebView#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderleftwidth"
- }
- ]
- },
- "32901": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/WebView#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderradius"
- }
- ]
- },
- "32902": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/WebView#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/WebView#bordertopleftradius"
- }
- ]
- },
- "32903": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/WebView#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/WebView#bordertoprightradius"
- }
- ]
- },
- "32904": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/WebView#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderbottomrightradius"
- }
- ]
- },
- "32905": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/WebView#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/WebView#borderbottomleftradius"
- }
- ]
- },
- "32906": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/WebView#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#color"
- }
- ]
- },
- "32907": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/WebView#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/WebView#accessible"
- }
- ]
- },
- "32908": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityhidden"
- }
- ]
- },
- "32909": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityidentifier"
- }
- ]
- },
- "32910": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityrole"
- }
- ]
- },
- "32911": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/WebView#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/WebView#accessibilitystate"
- }
- ]
- },
- "32912": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/WebView#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilitylabel"
- }
- ]
- },
- "32913": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityvalue"
- }
- ]
- },
- "32914": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/WebView#accessibilityhint"
- }
- ]
- },
- "32915": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/WebView#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#accessibilityliveregion"
- }
- ]
- },
- "32916": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/WebView#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/WebView#accessibilitylanguage"
- }
- ]
- },
- "32917": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/WebView#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/WebView#accessibilitymediasession"
- }
- ]
- },
- "32918": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/WebView#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/WebView#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "32919": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/WebView#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/WebView#iosaccessibilityminfontscale"
- }
- ]
- },
- "32920": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/WebView#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/WebView#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "32921": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/WebView#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/WebView#androidcontentdescriptionupdated"
- }
- ]
- },
- "32922": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/WebView#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#automationtext"
- }
- ]
- },
- "32923": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/WebView#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/WebView#androidelevation"
- }
- ]
- },
- "32924": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/WebView#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/WebView#androiddynamicelevationoffset"
- }
- ]
- },
- "32925": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/WebView#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/WebView#background"
- }
- ]
- },
- "32926": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/WebView#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/WebView#backgroundcolor"
- }
- ]
- },
- "32927": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/WebView#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/WebView#backgroundimage"
- }
- ]
- },
- "32928": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/WebView#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/WebView#boxshadow"
- }
- ]
- },
- "32929": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/WebView#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/WebView#minwidth"
- }
- ]
- },
- "32930": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/WebView#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/WebView#minheight"
- }
- ]
- },
- "32931": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/WebView#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/WebView#width"
- }
- ]
- },
- "32932": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/WebView#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/WebView#height"
- }
- ]
- },
- "32933": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/WebView#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/WebView#margin"
- }
- ]
- },
- "32934": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/WebView#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/WebView#marginleft"
- }
- ]
- },
- "32935": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/WebView#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/WebView#margintop"
- }
- ]
- },
- "32936": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/WebView#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/WebView#marginright"
- }
- ]
- },
- "32937": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/WebView#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/WebView#marginbottom"
- }
- ]
- },
- "32938": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/WebView#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/WebView#horizontalalignment"
- }
- ]
- },
- "32939": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/WebView#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/WebView#verticalalignment"
- }
- ]
- },
- "32940": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/WebView#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/WebView#visibility"
- }
- ]
- },
- "32941": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/WebView#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/WebView#opacity"
- }
- ]
- },
- "32942": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/WebView#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/WebView#rotate"
- }
- ]
- },
- "32943": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/WebView#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/WebView#rotatex"
- }
- ]
- },
- "32944": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/WebView#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/WebView#rotatey"
- }
- ]
- },
- "32945": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/WebView#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/WebView#perspective"
- }
- ]
- },
- "32946": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/WebView#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/WebView#translatex"
- }
- ]
- },
- "32947": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/WebView#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/WebView#translatey"
- }
- ]
- },
- "32948": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/WebView#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/WebView#scalex"
- }
- ]
- },
- "32949": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/WebView#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/WebView#scaley"
- }
- ]
- },
- "32950": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/WebView#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/WebView#originx"
- }
- ]
- },
- "32951": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/WebView#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/WebView#originy"
- }
- ]
- },
- "32952": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/WebView#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/WebView#isenabled"
- }
- ]
- },
- "32953": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/WebView#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/WebView#isuserinteractionenabled"
- }
- ]
- },
- "32954": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/WebView#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 468,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/WebView#iosoverflowsafearea"
- }
- ]
- },
- "32955": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/WebView#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/WebView#iosoverflowsafeareaenabled"
- }
- ]
- },
- "32956": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/WebView#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/WebView#iosignoresafearea"
- }
- ]
- },
- "32957": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/WebView#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/WebView#islayoutvalid"
- }
- ]
- },
- "32958": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/WebView#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/WebView#csstype"
- }
- ]
- },
- "32959": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/WebView#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#cssclasses"
- }
- ]
- },
- "32960": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/WebView#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#csspseudoclasses"
- }
- ]
- },
- "32961": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/WebView#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/WebView#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32965": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/WebView#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/WebView#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32972": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/WebView#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/WebView#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32974": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/WebView#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/WebView#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32976": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/WebView#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/WebView#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "32978": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/WebView#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/WebView#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32982": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/WebView#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/WebView#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32988": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/WebView#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/WebView#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32992": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/WebView#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/WebView#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "32998": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/WebView#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/WebView#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33000": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/WebView#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/WebView#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "33003": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/WebView#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/WebView#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "33011": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/WebView#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/WebView#modal"
- }
- ]
- },
- "33012": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/WebView#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/WebView#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "33015": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/WebView#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/WebView#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "33018": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/WebView#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/WebView#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "33025": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/WebView#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/WebView#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "33027": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/WebView#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/WebView#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "33029": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/WebView#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/WebView#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "33032": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/WebView#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/WebView#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "33034": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/WebView#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/WebView#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33046": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/WebView#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/WebView#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "33048": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/WebView#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/WebView#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33050": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/WebView#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/WebView#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "33052": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/WebView#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/WebView#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33058": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/WebView#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/WebView#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33060": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/WebView#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/WebView#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33062": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/WebView#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/WebView#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33064": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/WebView#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/WebView#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33070": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/WebView#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/WebView#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33073": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/WebView#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/WebView#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33076": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/WebView#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/WebView#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33145": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/WebView#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/WebView#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33151": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/WebView#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/WebView#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33156": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/WebView#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/WebView#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33158": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/WebView#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/WebView#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33160": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/WebView#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/WebView#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33163": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/WebView#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/WebView#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "33166": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/WebView#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/WebView#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "33170": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/WebView#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#testid"
- }
- ]
- },
- "33171": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/WebView#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#touchanimation"
- }
- ]
- },
- "33172": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/WebView#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#ignoretouchanimation"
- }
- ]
- },
- "33173": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/WebView#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#touchdelay"
- }
- ]
- },
- "33174": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/WebView#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#closemodalcallback"
- }
- ]
- },
- "33175": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/WebView#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/WebView#transitionid"
- }
- ]
- },
- "33176": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/WebView#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#islayoutvalid"
- }
- ]
- },
- "33177": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/WebView#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/WebView#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33179": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/WebView#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/WebView#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33182": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/WebView#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33190": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/WebView#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33198": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/WebView#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33206": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/WebView#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/WebView#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "33209": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/WebView#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/WebView#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33212": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/WebView#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/WebView#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33216": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/WebView#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/WebView#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33222": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/WebView#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/WebView#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33224": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/WebView#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/WebView#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33226": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/WebView#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/WebView#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33228": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/WebView#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/WebView#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "33232": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/WebView#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/WebView#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "33236": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/WebView#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/WebView#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "33240": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/WebView#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/WebView#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "33244": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/WebView#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/WebView#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33246": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/WebView#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/WebView#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33252": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/WebView#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/WebView#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33254": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/WebView#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/WebView#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33258": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/WebView#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#domnode"
- }
- ]
- },
- "33259": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/WebView#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#recyclenativeview"
- }
- ]
- },
- "33260": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/WebView#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/WebView#viewcontroller"
- }
- ]
- },
- "33261": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/WebView#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/WebView#nativeviewprotected"
- }
- ]
- },
- "33262": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/WebView#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/WebView#parent"
- }
- ]
- },
- "33263": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/WebView#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/WebView#iscollapsed"
- }
- ]
- },
- "33264": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/WebView#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/WebView#id"
- }
- ]
- },
- "33265": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/WebView#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/WebView#classname"
- }
- ]
- },
- "33266": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/WebView#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/WebView#sharedtransitiontag"
- }
- ]
- },
- "33267": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/WebView#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/WebView#sharedtransitionignore"
- }
- ]
- },
- "33268": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/WebView#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#domid"
- }
- ]
- },
- "33269": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/WebView#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#context"
- }
- ]
- },
- "33270": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/WebView#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#isaddedtonativevisualtree"
- }
- ]
- },
- "33271": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/WebView#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#cssstate"
- }
- ]
- },
- "33272": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/WebView#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#stylescope"
- }
- ]
- },
- "33277": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/WebView#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/WebView#suspendnativeupdatescount"
- }
- ]
- },
- "33278": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/WebView#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#isstylescopehost"
- }
- ]
- },
- "33279": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/WebView#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "33280": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/WebView#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#left"
- }
- ]
- },
- "33281": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/WebView#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#top"
- }
- ]
- },
- "33282": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/WebView#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveleft"
- }
- ]
- },
- "33283": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/WebView#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivetop"
- }
- ]
- },
- "33284": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/WebView#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#dock"
- }
- ]
- },
- "33285": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/WebView#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#row"
- }
- ]
- },
- "33286": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/WebView#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#col"
- }
- ]
- },
- "33287": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/WebView#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#column"
- }
- ]
- },
- "33288": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/WebView#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#rowspan"
- }
- ]
- },
- "33289": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/WebView#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#colspan"
- }
- ]
- },
- "33290": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/WebView#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#columnspan"
- }
- ]
- },
- "33291": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/WebView#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#order"
- }
- ]
- },
- "33292": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/WebView#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#flexgrow"
- }
- ]
- },
- "33293": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/WebView#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#flexshrink"
- }
- ]
- },
- "33294": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/WebView#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#flexwrapbefore"
- }
- ]
- },
- "33295": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/WebView#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#alignself"
- }
- ]
- },
- "33296": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/WebView#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#oldleft"
- }
- ]
- },
- "33297": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/WebView#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#oldtop"
- }
- ]
- },
- "33298": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/WebView#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#oldright"
- }
- ]
- },
- "33299": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/WebView#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#oldbottom"
- }
- ]
- },
- "33300": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/WebView#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#ignoreflexminwidthheightreset"
- }
- ]
- },
- "33301": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/WebView#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveminwidth"
- }
- ]
- },
- "33302": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/WebView#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveminheight"
- }
- ]
- },
- "33303": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/WebView#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivewidth"
- }
- ]
- },
- "33304": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/WebView#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveheight"
- }
- ]
- },
- "33305": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/WebView#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivemargintop"
- }
- ]
- },
- "33306": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/WebView#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivemarginright"
- }
- ]
- },
- "33307": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/WebView#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivemarginbottom"
- }
- ]
- },
- "33308": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/WebView#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivemarginleft"
- }
- ]
- },
- "33309": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/WebView#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivepaddingtop"
- }
- ]
- },
- "33310": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/WebView#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivepaddingright"
- }
- ]
- },
- "33311": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/WebView#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivepaddingbottom"
- }
- ]
- },
- "33312": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/WebView#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivepaddingleft"
- }
- ]
- },
- "33313": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/WebView#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectivebordertopwidth"
- }
- ]
- },
- "33314": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/WebView#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveborderrightwidth"
- }
- ]
- },
- "33315": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/WebView#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveborderbottomwidth"
- }
- ]
- },
- "33316": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/WebView#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#effectiveborderleftwidth"
- }
- ]
- },
- "33317": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/WebView#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#defaultpaddingtop"
- }
- ]
- },
- "33318": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/WebView#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#defaultpaddingright"
- }
- ]
- },
- "33319": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/WebView#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#defaultpaddingbottom"
- }
- ]
- },
- "33320": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/WebView#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#defaultpaddingleft"
- }
- ]
- },
- "33321": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/WebView#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "url": "/api/class/WebView#ispaddingrelative"
- }
- ]
- },
- "33323": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/WebView#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/WebView#reusable"
- }
- ]
- },
- "33324": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/WebView#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/WebView#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "33328": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/WebView#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/WebView#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "33332": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/WebView#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/WebView#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "33334": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/WebView#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/WebView#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "33338": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/WebView#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/WebView#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33340": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/WebView#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/WebView#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "33344": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/WebView#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/WebView#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "33348": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/WebView#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/WebView#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "33352": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/WebView#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/WebView#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "33354": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/WebView#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/WebView#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33356": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/WebView#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/WebView#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33360": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/WebView#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/WebView#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33362": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/WebView#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/WebView#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33364": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/WebView#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/WebView#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33367": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/WebView#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/WebView#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33370": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/WebView#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/WebView#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "33376": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/WebView#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/WebView#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33378": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/WebView#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/WebView#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33380": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/WebView#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/WebView#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33383": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/WebView#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/WebView#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33386": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/WebView#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/WebView#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33390": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/WebView#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/WebView#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33393": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/WebView#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/WebView#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33397": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/WebView#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/WebView#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33401": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/WebView#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/WebView#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33404": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/WebView#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/WebView#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "33406": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/WebView#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/WebView#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33409": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/WebView#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/WebView#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33412": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/WebView#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/WebView#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33415": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/WebView#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/WebView#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "33417": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/WebView#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/WebView#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33419": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/WebView#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/WebView#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33421": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/WebView#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/WebView#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33426": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/WebView#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/WebView#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33429": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/WebView#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/WebView#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33432": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/WebView#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/WebView#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33435": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/WebView#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/WebView#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "33438": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/WebView#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/WebView#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33442": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/WebView#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/WebView#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33445": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/WebView#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/WebView#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33449": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/WebView#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/WebView#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33452": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/WebView#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/WebView#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33455": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/WebView#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/WebView#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33457": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/WebView#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/WebView#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "33461": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/WebView#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/WebView#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33464": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/WebView#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/WebView#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33466": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/WebView#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/WebView#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "33469": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/WebView#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/WebView#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "33472": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/WebView#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/WebView#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33476": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/WebView#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WebView#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33484": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/WebView#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/WebView#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33488": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/WebView#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/WebView#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "33493": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/WebView#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/WebView#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "33496": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/WebView#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/WebView#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "33501": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/WebView#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "View"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/WebView#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "View"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/WebView.md b/content/api/class/WebView.md
deleted file mode 100644
index 656e41c1..00000000
--- a/content/api/class/WebView.md
+++ /dev/null
@@ -1,248 +0,0 @@
----
-title: WebView
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'WebView'
-layout: api
-seo:
- description: "Represents a standard WebView widget."
----
-
-
-
-
-
-
-layoutChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 108,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to layoutChanged event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#layoutchangedevent"
- }
- ]
- },
- "39334": {
- "name": "showingModallyEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#showingmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "showingModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 112,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to showingModally event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#showingmodallyevent"
- }
- ]
- },
- "39335": {
- "name": "shownModallyEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#shownmodallyevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "shownModallyEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 117,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to shownModally event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#shownmodallyevent"
- }
- ]
- },
- "39336": {
- "name": "accessibilityBlurEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityblurevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityBlurEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 122,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityBlur event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityblurevent"
- }
- ]
- },
- "39337": {
- "name": "accessibilityFocusEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityfocusevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 127,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocus event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityfocusevent"
- }
- ]
- },
- "39338": {
- "name": "accessibilityFocusChangedEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityfocuschangedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityFocusChangedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 132,
- "character": 15
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to accessibilityFocusChanged event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityfocuschangedevent"
- }
- ]
- },
- "39339": {
- "name": "measureChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#measurechild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measureChild(parent: View, child: View, widthMeasureSpec: number, heightMeasureSpec: number): {\n measuredHeight: number\n}",
- "url": "/api/class/WrapLayout#measurechild-measurechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 565,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure a child by taking into account its margins and a given measureSpecs."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be measured."
- }
- ]
- }
- },
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {}
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "{\n measuredHeight: number\n}"
- }
- ]
- },
- "39348": {
- "name": "layoutChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#layoutchild",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutChild(parent: View, child: View, left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/WrapLayout#layoutchild-layoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 575,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Layout a child by taking into account its margins, horizontal and vertical alignments and a given bounds."
- }
- ]
- },
- "parameters": [
- {
- "name": "parent",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This parameter is not used. You can pass null."
- }
- ]
- }
- },
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39356": {
- "name": "resolveSizeAndState",
- "type": "Method",
- "url": "/api/class/WrapLayout#resolvesizeandstate",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resolveSizeAndState(\n size: number,\n specSize: number,\n specMode: number,\n childMeasuredState: number\n): number",
- "url": "/api/class/WrapLayout#resolvesizeandstate-resolvesizeandstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 585,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Utility to reconcile a desired size and state, with constraints imposed\nby a MeasureSpec. Will take the desired size, unless a different size\nis imposed by the constraints. The returned value is a compound integer,\nwith the resolved size in the MEASURED_SIZE_MASK bits and\noptionally the bit MEASURED_STATE_TOO_SMALL set if the resulting\nsize is smaller than the size the view wants to be."
- }
- ]
- },
- "parameters": [
- {
- "name": "size",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specSize",
- "type": "number",
- "flags": {}
- },
- {
- "name": "specMode",
- "type": "number",
- "flags": {}
- },
- {
- "name": "childMeasuredState",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "39362": {
- "name": "combineMeasuredStates",
- "type": "Method",
- "url": "/api/class/WrapLayout#combinemeasuredstates",
- "flags": {
- "isPublic": true,
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "combineMeasuredStates(curState: number, newState: any): number",
- "url": "/api/class/WrapLayout#combinemeasuredstates-combinemeasuredstates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 587,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "curState",
- "type": "number",
- "flags": {}
- },
- {
- "name": "newState",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "number"
- }
- ]
- },
- "39366": {
- "name": "accessibilityPerformEscapeEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityperformescapeevent",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityPerformEscapeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 24,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#accessibilityperformescapeevent"
- }
- ]
- },
- "39367": {
- "name": "loadedEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#loadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "loadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 127,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to loaded event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#loadedevent"
- }
- ]
- },
- "39368": {
- "name": "unloadedEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#unloadedevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "unloadedEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 131,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to unloaded event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#unloadedevent"
- }
- ]
- },
- "39369": {
- "name": "createdEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#createdevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "createdEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 135,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to creation event"
- }
- ]
- },
- "url": "/api/class/WrapLayout#createdevent"
- }
- ]
- },
- "39370": {
- "name": "disposeNativeViewEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#disposenativeviewevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "disposeNativeViewEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 139,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to disposeNativeView event"
- }
- ]
- },
- "url": "/api/class/WrapLayout#disposenativeviewevent"
- }
- ]
- },
- "39371": {
- "name": "propertyChangeEvent",
- "type": "Property",
- "url": "/api/class/WrapLayout#propertychangeevent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "propertyChangeEvent: string",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 74,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String value used when hooking to propertyChange event."
- }
- ]
- },
- "url": "/api/class/WrapLayout#propertychangeevent"
- }
- ]
- },
- "39372": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/WrapLayout#on-7",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#on-7-on-8",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39380": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/WrapLayout#once-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#once-2-once-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 126,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39388": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/WrapLayout#off-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#off-2-off-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 127,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39396": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/WrapLayout#removeeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(eventName: string, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#removeeventlistener-2-removeeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 128,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39404": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/WrapLayout#addeventlistener-2",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(eventName: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#addeventlistener-2-addeventlistener-3",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 129,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39412": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/WrapLayout#constructor",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new WrapLayout(): WrapLayout",
- "url": "/api/class/WrapLayout#constructor-new-wraplayout",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 263,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "WrapLayout"
- }
- ]
- },
- "39414": {
- "name": "orientation",
- "type": "Property",
- "url": "/api/class/WrapLayout#orientation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the flow direction. Default value is horizontal.\nIf orientation is horizontal items are arranged in rows, else items are arranged in columns."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "orientation: OrientationType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/wrap-layout/index.d.ts",
- "line": 15,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the flow direction. Default value is horizontal.\nIf orientation is horizontal items are arranged in rows, else items are arranged in columns."
- }
- ]
- },
- "url": "/api/class/WrapLayout#orientation"
- }
- ]
- },
- "39415": {
- "name": "itemWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#itemwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the width used to measure and layout each child.\nDefault value is Number.NaN which does not restrict children."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/wrap-layout/index.d.ts",
- "line": 21,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the width used to measure and layout each child.\nDefault value is Number.NaN which does not restrict children."
- }
- ]
- },
- "url": "/api/class/WrapLayout#itemwidth"
- }
- ]
- },
- "39416": {
- "name": "itemHeight",
- "type": "Property",
- "url": "/api/class/WrapLayout#itemheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the height used to measure and layout each child.\nDefault value is Number.NaN which does not restrict children."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "itemHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/wrap-layout/index.d.ts",
- "line": 27,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the height used to measure and layout each child.\nDefault value is Number.NaN which does not restrict children."
- }
- ]
- },
- "url": "/api/class/WrapLayout#itemheight"
- }
- ]
- },
- "39417": {
- "name": "getChildrenCount",
- "type": "Method",
- "url": "/api/class/WrapLayout#getchildrencount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildrenCount(): number",
- "url": "/api/class/WrapLayout#getchildrencount-getchildrencount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 12,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the number of children in this Layout."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "39419": {
- "name": "getChildAt",
- "type": "Method",
- "url": "/api/class/WrapLayout#getchildat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildAt(index: number): View",
- "url": "/api/class/WrapLayout#getchildat-getchildat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 18,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the view at the specified position."
- }
- ]
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The position at which to get the child from."
- }
- ]
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "39422": {
- "name": "getChildIndex",
- "type": "Method",
- "url": "/api/class/WrapLayout#getchildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getChildIndex(child: View): number",
- "url": "/api/class/WrapLayout#getchildindex-getchildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 24,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the position of the child view"
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The child view that we are looking for."
- }
- ]
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "39425": {
- "name": "addChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#addchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addChild(view: View): void",
- "url": "/api/class/WrapLayout#addchild-addchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 30,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds the view to children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to be added to the end of the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39428": {
- "name": "insertChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#insertchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "insertChild(child: View, atIndex: number): void",
- "url": "/api/class/WrapLayout#insertchild-insertchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 37,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Inserts the view to children array at the specified index."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The insertion index."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39432": {
- "name": "removeChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#removechild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChild(view: View): void",
- "url": "/api/class/WrapLayout#removechild-removechild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 43,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the specified view from the children array."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view to remove from the children array."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39435": {
- "name": "removeChildren",
- "type": "Method",
- "url": "/api/class/WrapLayout#removechildren",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeChildren(): void",
- "url": "/api/class/WrapLayout#removechildren-removechildren-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 48,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes all views in this layout."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39437": {
- "name": "_registerLayoutChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#registerlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_registerLayoutChild(child: View): void",
- "url": "/api/class/WrapLayout#registerlayoutchild-registerlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 53,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39440": {
- "name": "_unregisterLayoutChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#unregisterlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_unregisterLayoutChild(child: View): void",
- "url": "/api/class/WrapLayout#unregisterlayoutchild-unregisterlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 58,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "INTERNAL. Used by the layout system."
- }
- ]
- },
- "parameters": [
- {
- "name": "child",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39443": {
- "name": "eachLayoutChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#eachlayoutchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachLayoutChild(callback: (child: View, isLast: boolean) => void): void",
- "url": "/api/class/WrapLayout#eachlayoutchild-eachlayoutchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 64,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Calls the callback for each child that should be laid out."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: View, isLast: boolean) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The callback"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39450": {
- "name": "padding",
- "type": "Property",
- "url": "/api/class/WrapLayout#padding",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "padding: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 69,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets padding style property."
- }
- ]
- },
- "url": "/api/class/WrapLayout#padding"
- }
- ]
- },
- "39451": {
- "name": "paddingBottom",
- "type": "Property",
- "url": "/api/class/WrapLayout#paddingbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingBottom: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 74,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the bottom padding of this layout."
- }
- ]
- },
- "url": "/api/class/WrapLayout#paddingbottom"
- }
- ]
- },
- "39452": {
- "name": "paddingLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#paddingleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingLeft: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 79,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the left padding of this layout."
- }
- ]
- },
- "url": "/api/class/WrapLayout#paddingleft"
- }
- ]
- },
- "39453": {
- "name": "paddingRight",
- "type": "Property",
- "url": "/api/class/WrapLayout#paddingright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingRight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 84,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the right padding of this layout."
- }
- ]
- },
- "url": "/api/class/WrapLayout#paddingright"
- }
- ]
- },
- "39454": {
- "name": "paddingTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#paddingtop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "paddingTop: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 89,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specify the top padding of this layout."
- }
- ]
- },
- "url": "/api/class/WrapLayout#paddingtop"
- }
- ]
- },
- "39455": {
- "name": "clipToBounds",
- "type": "Property",
- "url": "/api/class/WrapLayout#cliptobounds",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "clipToBounds: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 94,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether to clip the content of this layout."
- }
- ]
- },
- "url": "/api/class/WrapLayout#cliptobounds"
- }
- ]
- },
- "39456": {
- "name": "isPassThroughParentEnabled",
- "type": "Property",
- "url": "/api/class/WrapLayout#ispassthroughparentenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isPassThroughParentEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/layouts/layout-base.d.ts",
- "line": 101,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether touch event should pass through to a parent view of the\nlayout container in case an interactive child view did not handle it.\nDefault value of this property is false. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#ispassthroughparentenabled"
- }
- ]
- },
- "39468": {
- "name": "iosOverflowSafeArea",
- "type": "Property",
- "url": "/api/class/WrapLayout#iosoverflowsafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 910,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Instruct container view to expand beyond the safe area. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/WrapLayout#iosoverflowsafearea"
- }
- ]
- },
- "39469": {
- "name": "android",
- "type": "Property",
- "url": "/api/class/WrapLayout#android",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "android: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 138,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the android-specific native instance that lies behind this proxy. Will be available if running on an Android platform."
- }
- ]
- },
- "url": "/api/class/WrapLayout#android"
- }
- ]
- },
- "39470": {
- "name": "ios",
- "type": "Property",
- "url": "/api/class/WrapLayout#ios",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ios: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 144,
- "character": 8
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the ios-specific native instance that lies behind this proxy. Will be available if running on an iOS platform."
- }
- ]
- },
- "url": "/api/class/WrapLayout#ios"
- }
- ]
- },
- "39471": {
- "name": "bindingContext",
- "type": "Property",
- "url": "/api/class/WrapLayout#bindingcontext",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "bindingContext: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 149,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the binding context of this instance. This object is used as a source for each Binding that does not have a source object specified."
- }
- ]
- },
- "url": "/api/class/WrapLayout#bindingcontext"
- }
- ]
- },
- "39472": {
- "name": "borderColor",
- "type": "Property",
- "url": "/api/class/WrapLayout#bordercolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 154,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#bordercolor"
- }
- ]
- },
- "39473": {
- "name": "borderTopColor",
- "type": "Property",
- "url": "/api/class/WrapLayout#bordertopcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 159,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#bordertopcolor"
- }
- ]
- },
- "39474": {
- "name": "borderRightColor",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderrightcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 164,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderrightcolor"
- }
- ]
- },
- "39475": {
- "name": "borderBottomColor",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderbottomcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 169,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderbottomcolor"
- }
- ]
- },
- "39476": {
- "name": "borderLeftColor",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderleftcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftColor: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 174,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderleftcolor"
- }
- ]
- },
- "39477": {
- "name": "borderWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderWidth: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 179,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border width of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderwidth"
- }
- ]
- },
- "39478": {
- "name": "borderTopWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#bordertopwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 184,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top border width of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#bordertopwidth"
- }
- ]
- },
- "39479": {
- "name": "borderRightWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderrightwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRightWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 189,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the right border width of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderrightwidth"
- }
- ]
- },
- "39480": {
- "name": "borderBottomWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderbottomwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 194,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom border width of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderbottomwidth"
- }
- ]
- },
- "39481": {
- "name": "borderLeftWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderleftwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderLeftWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 199,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the left border width of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderleftwidth"
- }
- ]
- },
- "39482": {
- "name": "borderRadius",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderRadius: string | number | LengthDipUnit | LengthPxUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 204,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the border radius of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderradius"
- }
- ]
- },
- "39483": {
- "name": "borderTopLeftRadius",
- "type": "Property",
- "url": "/api/class/WrapLayout#bordertopleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 209,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top left border radius of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#bordertopleftradius"
- }
- ]
- },
- "39484": {
- "name": "borderTopRightRadius",
- "type": "Property",
- "url": "/api/class/WrapLayout#bordertoprightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderTopRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 214,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the top right border radius of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#bordertoprightradius"
- }
- ]
- },
- "39485": {
- "name": "borderBottomRightRadius",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderbottomrightradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomRightRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 219,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom right border radius of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderbottomrightradius"
- }
- ]
- },
- "39486": {
- "name": "borderBottomLeftRadius",
- "type": "Property",
- "url": "/api/class/WrapLayout#borderbottomleftradius",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "borderBottomLeftRadius: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 224,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the bottom left border radius of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#borderbottomleftradius"
- }
- ]
- },
- "39487": {
- "name": "color",
- "type": "Property",
- "url": "/api/class/WrapLayout#color",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "color: Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 229,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#color"
- }
- ]
- },
- "39488": {
- "name": "accessible",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessible",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessible: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 234,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "If "
- },
- {
- "kind": "code",
- "text": "`true`"
- },
- {
- "kind": "text",
- "text": " the element is an accessibility element and all the children will be treated as a single selectable component."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessible"
- }
- ]
- },
- "39489": {
- "name": "accessibilityHidden",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityhidden",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHidden: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 239,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Hide the view and its children from the a11y service"
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityhidden"
- }
- ]
- },
- "39490": {
- "name": "accessibilityIdentifier",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityidentifier",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityIdentifier: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 246,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The view's unique accessibilityIdentifier.\n\nThis is used for automated testing."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityidentifier"
- }
- ]
- },
- "39491": {
- "name": "accessibilityRole",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityrole",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityRole: AccessibilityRole",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 251,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which role should this view be treated by the a11y service?"
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityrole"
- }
- ]
- },
- "39492": {
- "name": "accessibilityState",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilitystate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityState: AccessibilityState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 256,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Which state should this view be treated as by the a11y service?"
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilitystate"
- }
- ]
- },
- "39493": {
- "name": "accessibilityLabel",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilitylabel",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLabel: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 261,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Short description of the element, ideally one word."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilitylabel"
- }
- ]
- },
- "39494": {
- "name": "accessibilityValue",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityvalue",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityValue: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 266,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Current value of the element in a localized string."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityvalue"
- }
- ]
- },
- "39495": {
- "name": "accessibilityHint",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityhint",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityHint: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 271,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A hint describes the elements behavior. Example: 'Tap change playback speed'"
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilityhint"
- }
- ]
- },
- "39496": {
- "name": "accessibilityLiveRegion",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilityliveregion",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLiveRegion: AccessibilityLiveRegion",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 272,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#accessibilityliveregion"
- }
- ]
- },
- "39497": {
- "name": "accessibilityLanguage",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilitylanguage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityLanguage: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 278,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets the language in which to speak the element's label and value.\nAccepts language ID tags that follows the \"BCP 47\" specification."
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilitylanguage"
- }
- ]
- },
- "39498": {
- "name": "accessibilityMediaSession",
- "type": "Property",
- "url": "/api/class/WrapLayout#accessibilitymediasession",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "accessibilityMediaSession: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 283,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This view starts a media session. Equivalent to trait = startsMedia"
- }
- ]
- },
- "url": "/api/class/WrapLayout#accessibilitymediasession"
- }
- ]
- },
- "39499": {
- "name": "iosAccessibilityAdjustsFontSize",
- "type": "Property",
- "url": "/api/class/WrapLayout#iosaccessibilityadjustsfontsize",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityAdjustsFontSize: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 288,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Defines whether accessibility font scale should affect font size."
- }
- ]
- },
- "url": "/api/class/WrapLayout#iosaccessibilityadjustsfontsize"
- }
- ]
- },
- "39500": {
- "name": "iosAccessibilityMinFontScale",
- "type": "Property",
- "url": "/api/class/WrapLayout#iosaccessibilityminfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMinFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 293,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/WrapLayout#iosaccessibilityminfontscale"
- }
- ]
- },
- "39501": {
- "name": "iosAccessibilityMaxFontScale",
- "type": "Property",
- "url": "/api/class/WrapLayout#iosaccessibilitymaxfontscale",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosAccessibilityMaxFontScale: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 298,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the maximum accessibility font scale."
- }
- ]
- },
- "url": "/api/class/WrapLayout#iosaccessibilitymaxfontscale"
- }
- ]
- },
- "39502": {
- "name": "_androidContentDescriptionUpdated",
- "type": "Property",
- "url": "/api/class/WrapLayout#androidcontentdescriptionupdated",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_androidContentDescriptionUpdated?: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 303,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal use only. This is used to limit the number of updates to android.view.View.setContentDescription()"
- }
- ]
- },
- "url": "/api/class/WrapLayout#androidcontentdescriptionupdated"
- }
- ]
- },
- "39503": {
- "name": "automationText",
- "type": "Property",
- "url": "/api/class/WrapLayout#automationtext",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "automationText: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 305,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#automationtext"
- }
- ]
- },
- "39504": {
- "name": "androidElevation",
- "type": "Property",
- "url": "/api/class/WrapLayout#androidelevation",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidElevation: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 310,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the elevation of the android view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#androidelevation"
- }
- ]
- },
- "39505": {
- "name": "androidDynamicElevationOffset",
- "type": "Property",
- "url": "/api/class/WrapLayout#androiddynamicelevationoffset",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "androidDynamicElevationOffset: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 315,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the dynamic elevation offset of the android view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#androiddynamicelevationoffset"
- }
- ]
- },
- "39506": {
- "name": "background",
- "type": "Property",
- "url": "/api/class/WrapLayout#background",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "background: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 320,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background style property."
- }
- ]
- },
- "url": "/api/class/WrapLayout#background"
- }
- ]
- },
- "39507": {
- "name": "backgroundColor",
- "type": "Property",
- "url": "/api/class/WrapLayout#backgroundcolor",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundColor: string | Color",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 325,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background color of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#backgroundcolor"
- }
- ]
- },
- "39508": {
- "name": "backgroundImage",
- "type": "Property",
- "url": "/api/class/WrapLayout#backgroundimage",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "backgroundImage: string | LinearGradient",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 330,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the background image of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#backgroundimage"
- }
- ]
- },
- "39509": {
- "name": "boxShadow",
- "type": "Property",
- "url": "/api/class/WrapLayout#boxshadow",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "boxShadow: string | CSSShadow",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 335,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the box shadow of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#boxshadow"
- }
- ]
- },
- "39510": {
- "name": "minWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#minwidth",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minWidth: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 340,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum width the view may grow to."
- }
- ]
- },
- "url": "/api/class/WrapLayout#minwidth"
- }
- ]
- },
- "39511": {
- "name": "minHeight",
- "type": "Property",
- "url": "/api/class/WrapLayout#minheight",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "minHeight: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 345,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the minimum height the view may grow to."
- }
- ]
- },
- "url": "/api/class/WrapLayout#minheight"
- }
- ]
- },
- "39512": {
- "name": "width",
- "type": "Property",
- "url": "/api/class/WrapLayout#width",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "width: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 350,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired width of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#width"
- }
- ]
- },
- "39513": {
- "name": "height",
- "type": "Property",
- "url": "/api/class/WrapLayout#height",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "height: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 355,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the desired height of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#height"
- }
- ]
- },
- "39514": {
- "name": "margin",
- "type": "Property",
- "url": "/api/class/WrapLayout#margin",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "margin: string | number | LengthDipUnit | LengthPxUnit | LengthPercentUnit",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 360,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets margin style property."
- }
- ]
- },
- "url": "/api/class/WrapLayout#margin"
- }
- ]
- },
- "39515": {
- "name": "marginLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#marginleft",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginLeft: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 365,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the left side of this view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#marginleft"
- }
- ]
- },
- "39516": {
- "name": "marginTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#margintop",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginTop: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 370,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the top side of this view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#margintop"
- }
- ]
- },
- "39517": {
- "name": "marginRight",
- "type": "Property",
- "url": "/api/class/WrapLayout#marginright",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginRight: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 375,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the right side of this view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#marginright"
- }
- ]
- },
- "39518": {
- "name": "marginBottom",
- "type": "Property",
- "url": "/api/class/WrapLayout#marginbottom",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "marginBottom: PercentLengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 380,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Specifies extra space on the bottom side of this view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#marginbottom"
- }
- ]
- },
- "39519": {
- "name": "horizontalAlignment",
- "type": "Property",
- "url": "/api/class/WrapLayout#horizontalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "horizontalAlignment: HorizontalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 385,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Horizontal axis."
- }
- ]
- },
- "url": "/api/class/WrapLayout#horizontalalignment"
- }
- ]
- },
- "39520": {
- "name": "verticalAlignment",
- "type": "Property",
- "url": "/api/class/WrapLayout#verticalalignment",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "verticalAlignment: VerticalAlignmentType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 390,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the alignment of this view within its parent along the Vertical axis."
- }
- ]
- },
- "url": "/api/class/WrapLayout#verticalalignment"
- }
- ]
- },
- "39521": {
- "name": "visibility",
- "type": "Property",
- "url": "/api/class/WrapLayout#visibility",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "visibility: VisibilityType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 395,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the visibility of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#visibility"
- }
- ]
- },
- "39522": {
- "name": "opacity",
- "type": "Property",
- "url": "/api/class/WrapLayout#opacity",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "opacity: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 400,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the opacity style property."
- }
- ]
- },
- "url": "/api/class/WrapLayout#opacity"
- }
- ]
- },
- "39523": {
- "name": "rotate",
- "type": "Property",
- "url": "/api/class/WrapLayout#rotate",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotate: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 405,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Z axis."
- }
- ]
- },
- "url": "/api/class/WrapLayout#rotate"
- }
- ]
- },
- "39524": {
- "name": "rotateX",
- "type": "Property",
- "url": "/api/class/WrapLayout#rotatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 410,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the X axis."
- }
- ]
- },
- "url": "/api/class/WrapLayout#rotatex"
- }
- ]
- },
- "39525": {
- "name": "rotateY",
- "type": "Property",
- "url": "/api/class/WrapLayout#rotatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rotateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 415,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the rotate affine transform of the view along the Y axis."
- }
- ]
- },
- "url": "/api/class/WrapLayout#rotatey"
- }
- ]
- },
- "39526": {
- "name": "perspective",
- "type": "Property",
- "url": "/api/class/WrapLayout#perspective",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "perspective: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 421,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the distance of the camera form the view perspective.\nUsually needed when rotating the view over the X or Y axis."
- }
- ]
- },
- "url": "/api/class/WrapLayout#perspective"
- }
- ]
- },
- "39527": {
- "name": "translateX",
- "type": "Property",
- "url": "/api/class/WrapLayout#translatex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 426,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateX affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/WrapLayout#translatex"
- }
- ]
- },
- "39528": {
- "name": "translateY",
- "type": "Property",
- "url": "/api/class/WrapLayout#translatey",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "translateY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 431,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the translateY affine transform of the view in device independent pixels."
- }
- ]
- },
- "url": "/api/class/WrapLayout#translatey"
- }
- ]
- },
- "39529": {
- "name": "scaleX",
- "type": "Property",
- "url": "/api/class/WrapLayout#scalex",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 436,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleX affine transform of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#scalex"
- }
- ]
- },
- "39530": {
- "name": "scaleY",
- "type": "Property",
- "url": "/api/class/WrapLayout#scaley",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "scaleY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 441,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the scaleY affine transform of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#scaley"
- }
- ]
- },
- "39531": {
- "name": "originX",
- "type": "Property",
- "url": "/api/class/WrapLayout#originx",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originX: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 448,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the X component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#originx"
- }
- ]
- },
- "39532": {
- "name": "originY",
- "type": "Property",
- "url": "/api/class/WrapLayout#originy",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "originY: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 453,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the Y component of the origin point around which the view will be transformed. The default value is 0.5 representing the center of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#originy"
- }
- ]
- },
- "39533": {
- "name": "isEnabled",
- "type": "Property",
- "url": "/api/class/WrapLayout#isenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 458,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view is enabled. This affects the appearance of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#isenabled"
- }
- ]
- },
- "39534": {
- "name": "isUserInteractionEnabled",
- "type": "Property",
- "url": "/api/class/WrapLayout#isuserinteractionenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isUserInteractionEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 463,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the user can interact with the view. This does not affect the appearance of the view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#isuserinteractionenabled"
- }
- ]
- },
- "39535": {
- "name": "iosOverflowSafeAreaEnabled",
- "type": "Property",
- "url": "/api/class/WrapLayout#iosoverflowsafeareaenabled",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosOverflowSafeAreaEnabled: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 473,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Enables or disables the iosOverflowSafeArea property for all children. This property is iOS specific. Default value: true"
- }
- ]
- },
- "url": "/api/class/WrapLayout#iosoverflowsafeareaenabled"
- }
- ]
- },
- "39536": {
- "name": "iosIgnoreSafeArea",
- "type": "Property",
- "url": "/api/class/WrapLayout#iosignoresafearea",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "iosIgnoreSafeArea: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 478,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets a value indicating whether the the view should totally ignore safe areas computation. This property is iOS specific. Default value: false"
- }
- ]
- },
- "url": "/api/class/WrapLayout#iosignoresafearea"
- }
- ]
- },
- "39537": {
- "name": "isLayoutValid",
- "type": "Property",
- "url": "/api/class/WrapLayout#islayoutvalid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 483,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets is layout is valid. This is a read-only property."
- }
- ]
- },
- "url": "/api/class/WrapLayout#islayoutvalid"
- }
- ]
- },
- "39538": {
- "name": "cssType",
- "type": "Property",
- "url": "/api/class/WrapLayout#csstype",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssType: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 489,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the CSS fully qualified type name.\nUsing this as element type should allow for PascalCase and kebap-case selectors, when fully qualified, to match the element."
- }
- ]
- },
- "url": "/api/class/WrapLayout#csstype"
- }
- ]
- },
- "39539": {
- "name": "cssClasses",
- "type": "Property",
- "url": "/api/class/WrapLayout#cssclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 491,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#cssclasses"
- }
- ]
- },
- "39540": {
- "name": "cssPseudoClasses",
- "type": "Property",
- "url": "/api/class/WrapLayout#csspseudoclasses",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "cssPseudoClasses: Set<string>",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 492,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#csspseudoclasses"
- }
- ]
- },
- "39541": {
- "name": "measure",
- "type": "Method",
- "url": "/api/class/WrapLayout#measure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "measure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/WrapLayout#measure-measure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 500,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This is called to find out how big a view should be. The parent supplies constraint information in the width and height parameters.\nThe actual measurement work of a view is performed in onMeasure(int, int), called by this method. Therefore, only onMeasure(int, int) can and must be overridden by subclasses."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Horizontal space requirements as imposed by the parent"
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Vertical space requirements as imposed by the parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39545": {
- "name": "layout",
- "type": "Method",
- "url": "/api/class/WrapLayout#layout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layout(\n left: number,\n top: number,\n right: number,\n bottom: number,\n setFrame?: boolean\n): void",
- "url": "/api/class/WrapLayout#layout-layout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 511,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Assign a size and position to a view and all of its descendants\nThis is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass().\nDerived classes should not override this method. Derived classes with children should override onLayout. In that method, they should call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {}
- },
- {
- "name": "top",
- "type": "number",
- "flags": {}
- },
- {
- "name": "right",
- "type": "number",
- "flags": {}
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {}
- },
- {
- "name": "setFrame",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39552": {
- "name": "getMeasuredWidth",
- "type": "Method",
- "url": "/api/class/WrapLayout#getmeasuredwidth",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredWidth(): number",
- "url": "/api/class/WrapLayout#getmeasuredwidth-getmeasuredwidth-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 516,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw width component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "39554": {
- "name": "getMeasuredHeight",
- "type": "Method",
- "url": "/api/class/WrapLayout#getmeasuredheight",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredHeight(): number",
- "url": "/api/class/WrapLayout#getmeasuredheight-getmeasuredheight-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 521,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the raw height component."
- }
- ]
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "39556": {
- "name": "getMeasuredState",
- "type": "Method",
- "url": "/api/class/WrapLayout#getmeasuredstate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMeasuredState(): number",
- "url": "/api/class/WrapLayout#getmeasuredstate-getmeasuredstate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 523,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "39558": {
- "name": "onMeasure",
- "type": "Method",
- "url": "/api/class/WrapLayout#onmeasure",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void",
- "url": "/api/class/WrapLayout#onmeasure-onmeasure-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 531,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Measure the view and its content to determine the measured width and the measured height. This method is invoked by measure(int, int) and should be overriden by subclasses to provide accurate and efficient measurement of their contents.\nWhen overriding this method, you must call setMeasuredDimension(int, int) to store the measured width and height of this view. Failure to do so will trigger an exception, thrown by measure(int, int)."
- }
- ]
- },
- "parameters": [
- {
- "name": "widthMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "horizontal space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- },
- {
- "name": "heightMeasureSpec",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "vertical space requirements as imposed by the parent. The requirements are encoded with View.MeasureSpec."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39562": {
- "name": "onLayout",
- "type": "Method",
- "url": "/api/class/WrapLayout#onlayout",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLayout(left: number, top: number, right: number, bottom: number): void",
- "url": "/api/class/WrapLayout#onlayout-onlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 540,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39568": {
- "name": "setMeasuredDimension",
- "type": "Method",
- "url": "/api/class/WrapLayout#setmeasureddimension",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMeasuredDimension(measuredWidth: number, measuredHeight: number): void",
- "url": "/api/class/WrapLayout#setmeasureddimension-setmeasureddimension-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 547,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method must be called by onMeasure(int, int) to store the measured width and measured height. Failing to do so will trigger an exception at measurement time."
- }
- ]
- },
- "parameters": [
- {
- "name": "measuredWidth",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured width of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- },
- {
- "name": "measuredHeight",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The measured height of this view. May be a complex bit mask as defined by MEASURED_SIZE_MASK and MEASURED_STATE_TOO_SMALL."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39572": {
- "name": "layoutNativeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#layoutnativeview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "layoutNativeView(\n left: number,\n top: number,\n right: number,\n bottom: number\n): void",
- "url": "/api/class/WrapLayout#layoutnativeview-layoutnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 556,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called from onLayout when native view position is about to be changed."
- }
- ]
- },
- "parameters": [
- {
- "name": "left",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Left position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "top",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Top position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "right",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Right position, relative to parent"
- }
- ]
- }
- },
- {
- "name": "bottom",
- "type": "number",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Bottom position, relative to parent"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39578": {
- "name": "focus",
- "type": "Method",
- "url": "/api/class/WrapLayout#focus",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "focus(): boolean",
- "url": "/api/class/WrapLayout#focus-focus-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 593,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tries to focus the view.\nReturns a value indicating whether this view or one of its descendants actually took focus."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39580": {
- "name": "getGestureObservers",
- "type": "Method",
- "url": "/api/class/WrapLayout#getgestureobservers",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getGestureObservers(type: GestureTypes): GesturesObserver[]",
- "url": "/api/class/WrapLayout#getgestureobservers-getgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 595,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- }
- ],
- "returns": "GesturesObserver[]"
- }
- ]
- },
- "39583": {
- "name": "off",
- "type": "Method",
- "url": "/api/class/WrapLayout#off",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "off(eventNames: string | GestureTypes, callback?: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/WrapLayout#off-off-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 603,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes listener(s) for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Comma delimited names of the events or gesture types the specified listener is associated with."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter pointing to a specific listener. If not defined, all listeners for the event names will be removed."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used to refine search of the correct callback which will be removed as event listener."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "39591": {
- "name": "on",
- "type": "Method",
- "url": "/api/class/WrapLayout#on",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "on(eventNames: string | GestureTypes, callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/WrapLayout#on-on-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 611,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A basic method signature to hook an event listener (shortcut alias to the addEventListener method)."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string | GestureTypes",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "String corresponding to events (e.g. \"propertyChange\"). Optionally could be used more events separated by "
- },
- {
- "kind": "code",
- "text": "`,`"
- },
- {
- "kind": "text",
- "text": " (e.g. \"propertyChange\", \"change\") or you can use gesture types."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Callback function which will be executed when event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which will be used as "
- },
- {
- "kind": "code",
- "text": "`this`"
- },
- {
- "kind": "text",
- "text": " context for callback execution."
- }
- ]
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"loaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/WrapLayout#on-on-2",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 616,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a loaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"loaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"unloaded\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/WrapLayout#on-on-3",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 621,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when an unloaded event occurs."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"unloaded\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"androidBackPressed\", callback: (args: EventData) => void, thisArg?: any): any",
- "url": "/api/class/WrapLayout#on-on-4",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 627,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised when a back button is pressed.\nThis event is raised only for android."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"androidBackPressed\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"showingModally\", callback: (args: ShownModallyData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#on-on-5",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 632,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised before the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"showingModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- },
- {
- "type": "CallSignature",
- "code": "on(event: \"shownModally\", callback: (args: ShownModallyData) => void, thisArg?: any): any",
- "url": "/api/class/WrapLayout#on-on-6",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 637,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Raised after the view is shown as a modal dialog."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "\"shownModally\"",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: ShownModallyData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "39634": {
- "name": "modal",
- "type": "Property",
- "url": "/api/class/WrapLayout#modal",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "modal: View",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 642,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the current modal view that this page is showing (is parent of), if any."
- }
- ]
- },
- "url": "/api/class/WrapLayout#modal"
- }
- ]
- },
- "39635": {
- "name": "animate",
- "type": "Method",
- "url": "/api/class/WrapLayout#animate",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "animate(options: AnimationDefinition): AnimationPromise",
- "url": "/api/class/WrapLayout#animate-animate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 647,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Animates one or more properties of the view based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "AnimationPromise"
- }
- ]
- },
- "39638": {
- "name": "createAnimation",
- "type": "Method",
- "url": "/api/class/WrapLayout#createanimation",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createAnimation(options: AnimationDefinition): Animation",
- "url": "/api/class/WrapLayout#createanimation-createanimation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 652,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an Animation object based on the supplied options."
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "AnimationDefinition",
- "flags": {}
- }
- ],
- "returns": "Animation"
- }
- ]
- },
- "39641": {
- "name": "getSafeAreaInsets",
- "type": "Method",
- "url": "/api/class/WrapLayout#getsafeareainsets",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSafeAreaInsets(): {\n bottom: any\n left: any\n right: any\n}",
- "url": "/api/class/WrapLayout#getsafeareainsets-getsafeareainsets-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 657,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the iOS safe area insets of this view."
- }
- ]
- },
- "parameters": [],
- "returns": "{\n bottom: any\n left: any\n right: any\n}"
- }
- ]
- },
- "39648": {
- "name": "getLocationInWindow",
- "type": "Method",
- "url": "/api/class/WrapLayout#getlocationinwindow",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationInWindow(): Point",
- "url": "/api/class/WrapLayout#getlocationinwindow-getlocationinwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 662,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the window coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "39650": {
- "name": "getLocationOnScreen",
- "type": "Method",
- "url": "/api/class/WrapLayout#getlocationonscreen",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationOnScreen(): Point",
- "url": "/api/class/WrapLayout#getlocationonscreen-getlocationonscreen-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 667,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the screen coordinate system."
- }
- ]
- },
- "parameters": [],
- "returns": "Point"
- }
- ]
- },
- "39652": {
- "name": "getLocationRelativeTo",
- "type": "Method",
- "url": "/api/class/WrapLayout#getlocationrelativeto",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getLocationRelativeTo(otherView: View): Point",
- "url": "/api/class/WrapLayout#getlocationrelativeto-getlocationrelativeto-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 672,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the location of this view in the otherView's coordinate system."
- }
- ]
- },
- "parameters": [
- {
- "name": "otherView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "Point"
- }
- ]
- },
- "39655": {
- "name": "getActualSize",
- "type": "Method",
- "url": "/api/class/WrapLayout#getactualsize",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getActualSize(): Size",
- "url": "/api/class/WrapLayout#getactualsize-getactualsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 677,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the actual size of the view in device-independent pixels."
- }
- ]
- },
- "parameters": [],
- "returns": "Size"
- }
- ]
- },
- "39657": {
- "name": "onBackPressed",
- "type": "Method",
- "url": "/api/class/WrapLayout#onbackpressed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onBackPressed(): boolean",
- "url": "/api/class/WrapLayout#onbackpressed-onbackpressed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 682,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Derived classes can override this method to handle Android back button press."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39669": {
- "name": "_getNativeViewsCount",
- "type": "Method",
- "url": "/api/class/WrapLayout#getnativeviewscount",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getNativeViewsCount(): number",
- "url": "/api/class/WrapLayout#getnativeviewscount-getnativeviewscount-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 712,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "number"
- }
- ]
- },
- "39671": {
- "name": "_closeAllModalViewsInternal",
- "type": "Method",
- "url": "/api/class/WrapLayout#closeallmodalviewsinternal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_closeAllModalViewsInternal(): boolean",
- "url": "/api/class/WrapLayout#closeallmodalviewsinternal-closeallmodalviewsinternal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 718,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nCloses all modal views. Should be used by plugins like "
- },
- {
- "kind": "code",
- "text": "`nativescript-angular`"
- },
- {
- "kind": "text",
- "text": " which implement their own "
- },
- {
- "kind": "code",
- "text": "`modal views`"
- },
- {
- "kind": "text",
- "text": " service."
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39673": {
- "name": "_getRootModalViews",
- "type": "Method",
- "url": "/api/class/WrapLayout#getrootmodalviews",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getRootModalViews(): ViewBase[]",
- "url": "/api/class/WrapLayout#getrootmodalviews-getrootmodalviews-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 724,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Internal method:\nGets all modal views of the current view."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase[]"
- }
- ]
- },
- "39675": {
- "name": "_eachLayoutView",
- "type": "Method",
- "url": "/api/class/WrapLayout#eachlayoutview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_eachLayoutView(callback: (View: any) => void): void",
- "url": "/api/class/WrapLayout#eachlayoutview-eachlayoutview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 726,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(View: any) => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39681": {
- "name": "_onSizeChanged",
- "type": "Method",
- "url": "/api/class/WrapLayout#onsizechanged",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onSizeChanged(): void",
- "url": "/api/class/WrapLayout#onsizechanged-onsizechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 731,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only Internal method used to update various view details like background rerendering, border, etc."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39683": {
- "name": "hasGestureObservers",
- "type": "Method",
- "url": "/api/class/WrapLayout#hasgestureobservers",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasGestureObservers(): boolean",
- "url": "/api/class/WrapLayout#hasgestureobservers-hasgestureobservers-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 736,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only check if gesture observers are attached"
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39685": {
- "name": "setOnTouchListener",
- "type": "Method",
- "url": "/api/class/WrapLayout#setontouchlistener",
- "flags": {
- "isOptional": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOnTouchListener(): void",
- "url": "/api/class/WrapLayout#setontouchlistener-setontouchlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 741,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Android only to set the touch listener"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39687": {
- "name": "eachChildView",
- "type": "Method",
- "url": "/api/class/WrapLayout#eachchildview",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChildView(callback: (view: View) => boolean): void",
- "url": "/api/class/WrapLayout#eachchildview-eachchildview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 747,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Iterates over children of type View."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(view: View) => boolean",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called for each child of type View. Iteration stops if this method returns falsy value."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39693": {
- "name": "sendAccessibilityEvent",
- "type": "Method",
- "url": "/api/class/WrapLayout#sendaccessibilityevent",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "sendAccessibilityEvent(options: Partial<AccessibilityEventOptions>): void",
- "url": "/api/class/WrapLayout#sendaccessibilityevent-sendaccessibilityevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 761,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Send accessibility event"
- }
- ],
- "blockTags": [
- {
- "tag": "@params",
- "content": [
- {
- "kind": "text",
- "text": "options AccessibilityEventOptions\nandroidAccessibilityEvent: AndroidAccessibilityEvent;\niosNotificationType: IOSPostAccessibilityNotificationType;\nmessage: string;\n\niOS Notes:\n type = 'announcement' will announce "
- },
- {
- "kind": "code",
- "text": "`args`"
- },
- {
- "kind": "text",
- "text": " via VoiceOver. If no args element will be announced instead.\n type = 'layout' used when the layout of a screen changes.\n type = 'screen' large change made to the screen."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "options",
- "type": "Partial<AccessibilityEventOptions>",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39696": {
- "name": "accessibilityAnnouncement",
- "type": "Method",
- "url": "/api/class/WrapLayout#accessibilityannouncement",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityAnnouncement(msg?: string): void",
- "url": "/api/class/WrapLayout#accessibilityannouncement-accessibilityannouncement-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 766,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Make an announcement to the screen reader."
- }
- ]
- },
- "parameters": [
- {
- "name": "msg",
- "type": "string",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39699": {
- "name": "accessibilityScreenChanged",
- "type": "Method",
- "url": "/api/class/WrapLayout#accessibilityscreenchanged",
- "flags": {
- "isPublic": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "accessibilityScreenChanged(): void",
- "url": "/api/class/WrapLayout#accessibilityscreenchanged-accessibilityscreenchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 771,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Announce screen changed"
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39768": {
- "name": "_handleLivesync",
- "type": "Method",
- "url": "/api/class/WrapLayout#handlelivesync",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_handleLivesync(context?: { path: string }): boolean",
- "url": "/api/class/WrapLayout#handlelivesync-handlelivesync-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 866,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "{\n path: string\n}",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "39774": {
- "name": "_updateStyleScope",
- "type": "Method",
- "url": "/api/class/WrapLayout#updatestylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_updateStyleScope(\n cssFileName?: string,\n cssString?: string,\n css?: string\n): void",
- "url": "/api/class/WrapLayout#updatestylescope-updatestylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 874,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates styleScope or create new styleScope."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssString",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- },
- {
- "name": "css",
- "type": "string",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39779": {
- "name": "_onAttachedToWindow",
- "type": "Method",
- "url": "/api/class/WrapLayout#onattachedtowindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onAttachedToWindow(): void",
- "url": "/api/class/WrapLayout#onattachedtowindow-onattachedtowindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 879,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is attached to window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39781": {
- "name": "_onDetachedFromWindow",
- "type": "Method",
- "url": "/api/class/WrapLayout#ondetachedfromwindow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onDetachedFromWindow(): void",
- "url": "/api/class/WrapLayout#ondetachedfromwindow-ondetachedfromwindow-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 884,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Called in android when native view is dettached from window."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39783": {
- "name": "_hasAncestorView",
- "type": "Method",
- "url": "/api/class/WrapLayout#hasancestorview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hasAncestorView(ancestorView: View): boolean",
- "url": "/api/class/WrapLayout#hasancestorview-hasancestorview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 889,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether the current view has specific view for an ancestor."
- }
- ]
- },
- "parameters": [
- {
- "name": "ancestorView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "39786": {
- "name": "_getValue",
- "type": "Method",
- "url": "/api/class/WrapLayout#getvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_getValue(property: any): never",
- "url": "/api/class/WrapLayout#getvalue-getvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 895,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _getValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "39789": {
- "name": "_setValue",
- "type": "Method",
- "url": "/api/class/WrapLayout#setvalue",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setValue(property: any, value: any): never",
- "url": "/api/class/WrapLayout#setvalue-setvalue-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/index.d.ts",
- "line": 900,
- "character": 1
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "__Obsolete:__ There is a new property system that does not rely on _setValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "property",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "never"
- }
- ]
- },
- "39793": {
- "name": "testID",
- "type": "Property",
- "url": "/api/class/WrapLayout#testid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "testID: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 29,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#testid"
- }
- ]
- },
- "39794": {
- "name": "touchAnimation",
- "type": "Property",
- "url": "/api/class/WrapLayout#touchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchAnimation: boolean | TouchAnimationOptions",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 30,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#touchanimation"
- }
- ]
- },
- "39795": {
- "name": "ignoreTouchAnimation",
- "type": "Property",
- "url": "/api/class/WrapLayout#ignoretouchanimation",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "ignoreTouchAnimation: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 31,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#ignoretouchanimation"
- }
- ]
- },
- "39796": {
- "name": "touchDelay",
- "type": "Property",
- "url": "/api/class/WrapLayout#touchdelay",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "touchDelay: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 32,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#touchdelay"
- }
- ]
- },
- "39797": {
- "name": "_closeModalCallback",
- "type": "Property",
- "url": "/api/class/WrapLayout#closemodalcallback",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_closeModalCallback: Function",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 33,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#closemodalcallback"
- }
- ]
- },
- "39798": {
- "name": "transitionId",
- "type": "Property",
- "url": "/api/class/WrapLayout#transitionid",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "transitionId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 41,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Active transition instance id for tracking state"
- }
- ]
- },
- "url": "/api/class/WrapLayout#transitionid"
- }
- ]
- },
- "39799": {
- "name": "_isLayoutValid",
- "type": "Property",
- "url": "/api/class/WrapLayout#islayoutvalid",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isLayoutValid: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 44,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#islayoutvalid"
- }
- ]
- },
- "39800": {
- "name": "onLoaded",
- "type": "Method",
- "url": "/api/class/WrapLayout#onloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onLoaded(): void",
- "url": "/api/class/WrapLayout#onloaded-onloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 60,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39802": {
- "name": "_setupAsRootView",
- "type": "Method",
- "url": "/api/class/WrapLayout#setupasrootview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupAsRootView(context: any): void",
- "url": "/api/class/WrapLayout#setupasrootview-setupasrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 65,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39805": {
- "name": "_observe",
- "type": "Method",
- "url": "/api/class/WrapLayout#observe",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_observe(type: GestureTypes, callback: (args: GestureEventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#observe-observe-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 66,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(args: GestureEventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39813": {
- "name": "addEventListener",
- "type": "Method",
- "url": "/api/class/WrapLayout#addeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addEventListener(arg: string | GestureTypes, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#addeventlistener-addeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 68,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {}
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39821": {
- "name": "removeEventListener",
- "type": "Method",
- "url": "/api/class/WrapLayout#removeeventlistener",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeEventListener(arg: string | GestureTypes, callback?: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#removeeventlistener-removeeventlistener-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 69,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "arg",
- "type": "string | GestureTypes",
- "flags": {}
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39829": {
- "name": "showModal",
- "type": "Method",
- "url": "/api/class/WrapLayout#showmodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "showModal(...args: any[]): View",
- "url": "/api/class/WrapLayout#showmodal-showmodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 73,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "39832": {
- "name": "closeModal",
- "type": "Method",
- "url": "/api/class/WrapLayout#closemodal",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "closeModal(...args: any[]): void",
- "url": "/api/class/WrapLayout#closemodal-closemodal-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 74,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "args",
- "type": "any[]",
- "flags": {
- "isRest": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39835": {
- "name": "_showNativeModalView",
- "type": "Method",
- "url": "/api/class/WrapLayout#shownativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_showNativeModalView(parent: ViewCommon, options: ShowModalOptions): void",
- "url": "/api/class/WrapLayout#shownativemodalview-shownativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 76,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "options",
- "type": "ShowModalOptions",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39839": {
- "name": "_hideNativeModalView",
- "type": "Method",
- "url": "/api/class/WrapLayout#hidenativemodalview",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_hideNativeModalView(parent: ViewCommon, whenClosedCallback: () => void): void",
- "url": "/api/class/WrapLayout#hidenativemodalview-hidenativemodalview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 77,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "parent",
- "type": "ViewCommon",
- "flags": {}
- },
- {
- "name": "whenClosedCallback",
- "type": "() => void",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39845": {
- "name": "_raiseLayoutChangedEvent",
- "type": "Method",
- "url": "/api/class/WrapLayout#raiselayoutchangedevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseLayoutChangedEvent(): void",
- "url": "/api/class/WrapLayout#raiselayoutchangedevent-raiselayoutchangedevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 78,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39847": {
- "name": "_raiseShownModallyEvent",
- "type": "Method",
- "url": "/api/class/WrapLayout#raiseshownmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShownModallyEvent(): void",
- "url": "/api/class/WrapLayout#raiseshownmodallyevent-raiseshownmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 79,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39849": {
- "name": "_raiseShowingModallyEvent",
- "type": "Method",
- "url": "/api/class/WrapLayout#raiseshowingmodallyevent",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_raiseShowingModallyEvent(): void",
- "url": "/api/class/WrapLayout#raiseshowingmodallyevent-raiseshowingmodallyevent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 80,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39851": {
- "name": "backgroundSize",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#backgroundsize",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundSize(): string",
- "url": "/api/class/WrapLayout#backgroundsize-backgroundsize-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 121,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39855": {
- "name": "backgroundPosition",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#backgroundposition",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundPosition(): string",
- "url": "/api/class/WrapLayout#backgroundposition-backgroundposition-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 123,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39859": {
- "name": "backgroundRepeat",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#backgroundrepeat",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get backgroundRepeat(): BackgroundRepeatType",
- "url": "/api/class/WrapLayout#backgroundrepeat-backgroundrepeat-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "BackgroundRepeatType"
- }
- ]
- },
- "39863": {
- "name": "textTransform",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#texttransform",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get textTransform(): TextTransformType",
- "url": "/api/class/WrapLayout#texttransform-texttransform-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "TextTransformType"
- }
- ]
- },
- "39867": {
- "name": "requestLayout",
- "type": "Method",
- "url": "/api/class/WrapLayout#requestlayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "requestLayout(): void",
- "url": "/api/class/WrapLayout#requestlayout-requestlayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39869": {
- "name": "eachChild",
- "type": "Method",
- "url": "/api/class/WrapLayout#eachchild",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "eachChild(callback: (child: ViewBase) => boolean): void",
- "url": "/api/class/WrapLayout#eachchild-eachchild-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "callback",
- "type": "(child: ViewBase) => boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39875": {
- "name": "resetNativeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#resetnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetNativeView(): void",
- "url": "/api/class/WrapLayout#resetnativeview-resetnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 259,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39877": {
- "name": "setTestID",
- "type": "Method",
- "url": "/api/class/WrapLayout#settestid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setTestID(view: any, value: string): void",
- "url": "/api/class/WrapLayout#settestid-settestid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view/view-common.d.ts",
- "line": 273,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "any",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39881": {
- "name": "domNode",
- "type": "Property",
- "url": "/api/class/WrapLayout#domnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "domNode: DOMNode",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 149,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#domnode"
- }
- ]
- },
- "39882": {
- "name": "recycleNativeView",
- "type": "Property",
- "url": "/api/class/WrapLayout#recyclenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "recycleNativeView: "auto" | "always" | "never"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#recyclenativeview"
- }
- ]
- },
- "39883": {
- "name": "viewController",
- "type": "Property",
- "url": "/api/class/WrapLayout#viewcontroller",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "viewController: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "returns the native UIViewController."
- }
- ]
- },
- "url": "/api/class/WrapLayout#viewcontroller"
- }
- ]
- },
- "39884": {
- "name": "nativeViewProtected",
- "type": "Property",
- "url": "/api/class/WrapLayout#nativeviewprotected",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "nativeViewProtected: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 159,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "read-only. If you want to set out-of-band the nativeView use the setNativeView method."
- }
- ]
- },
- "url": "/api/class/WrapLayout#nativeviewprotected"
- }
- ]
- },
- "39885": {
- "name": "parent",
- "type": "Property",
- "url": "/api/class/WrapLayout#parent",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "parent: ViewBase",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 163,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the parent view. This property is read-only."
- }
- ]
- },
- "url": "/api/class/WrapLayout#parent"
- }
- ]
- },
- "39886": {
- "name": "isCollapsed",
- "type": "Property",
- "url": "/api/class/WrapLayout#iscollapsed",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "isCollapsed: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 169,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns true if visibility is set to 'collapse'.\nDefault(false) set in prototype\nReadonly property"
- }
- ]
- },
- "url": "/api/class/WrapLayout#iscollapsed"
- }
- ]
- },
- "39887": {
- "name": "id",
- "type": "Property",
- "url": "/api/class/WrapLayout#id",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "id: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 173,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the id for this view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#id"
- }
- ]
- },
- "39888": {
- "name": "className",
- "type": "Property",
- "url": "/api/class/WrapLayout#classname",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "className: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 177,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the CSS class name for this view."
- }
- ]
- },
- "url": "/api/class/WrapLayout#classname"
- }
- ]
- },
- "39889": {
- "name": "sharedTransitionTag",
- "type": "Property",
- "url": "/api/class/WrapLayout#sharedtransitiontag",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionTag: string",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets the shared transition tag for animated view transitions"
- }
- ]
- },
- "url": "/api/class/WrapLayout#sharedtransitiontag"
- }
- ]
- },
- "39890": {
- "name": "sharedTransitionIgnore",
- "type": "Property",
- "url": "/api/class/WrapLayout#sharedtransitionignore",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "sharedTransitionIgnore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Opt out of shared transition under different binding conditions"
- }
- ]
- },
- "url": "/api/class/WrapLayout#sharedtransitionignore"
- }
- ]
- },
- "39891": {
- "name": "_domId",
- "type": "Property",
- "url": "/api/class/WrapLayout#domid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_domId: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#domid"
- }
- ]
- },
- "39892": {
- "name": "_context",
- "type": "Property",
- "url": "/api/class/WrapLayout#context",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_context: any",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#context"
- }
- ]
- },
- "39893": {
- "name": "_isAddedToNativeVisualTree",
- "type": "Property",
- "url": "/api/class/WrapLayout#isaddedtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isAddedToNativeVisualTree: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#isaddedtonativevisualtree"
- }
- ]
- },
- "39894": {
- "name": "_cssState",
- "type": "Property",
- "url": "/api/class/WrapLayout#cssstate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_cssState: CssState",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#cssstate"
- }
- ]
- },
- "39895": {
- "name": "_styleScope",
- "type": "Property",
- "url": "/api/class/WrapLayout#stylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_styleScope: StyleScope",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#stylescope"
- }
- ]
- },
- "39900": {
- "name": "_suspendNativeUpdatesCount",
- "type": "Property",
- "url": "/api/class/WrapLayout#suspendnativeupdatescount",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_suspendNativeUpdatesCount: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Determines the depth of suspended updates.\nWhen the value is 0 the current property updates are not batched nor scoped and must be immediately applied.\nIf the value is 1 or greater, the current updates are batched and does not have to provide immediate update.\nDo not set this field, the _batchUpdate method is responsible to keep the count up to date,\nas well as adding/rmoving the view to/from the visual tree."
- }
- ]
- },
- "url": "/api/class/WrapLayout#suspendnativeupdatescount"
- }
- ]
- },
- "39901": {
- "name": "_isStyleScopeHost",
- "type": "Property",
- "url": "/api/class/WrapLayout#isstylescopehost",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isStyleScopeHost: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 209,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#isstylescopehost"
- }
- ]
- },
- "39902": {
- "name": "_automaticallyAdjustsScrollViewInsets",
- "type": "Property",
- "url": "/api/class/WrapLayout#automaticallyadjustsscrollviewinsets",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_automaticallyAdjustsScrollViewInsets: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#automaticallyadjustsscrollviewinsets"
- }
- ]
- },
- "39903": {
- "name": "left",
- "type": "Property",
- "url": "/api/class/WrapLayout#left",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "left: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#left"
- }
- ]
- },
- "39904": {
- "name": "top",
- "type": "Property",
- "url": "/api/class/WrapLayout#top",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "top: LengthType",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 212,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#top"
- }
- ]
- },
- "39905": {
- "name": "effectiveLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveleft"
- }
- ]
- },
- "39906": {
- "name": "effectiveTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivetop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivetop"
- }
- ]
- },
- "39907": {
- "name": "dock",
- "type": "Property",
- "url": "/api/class/WrapLayout#dock",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "dock: "left" | "right" | "top" | "bottom"",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#dock"
- }
- ]
- },
- "39908": {
- "name": "row",
- "type": "Property",
- "url": "/api/class/WrapLayout#row",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "row: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#row"
- }
- ]
- },
- "39909": {
- "name": "col",
- "type": "Property",
- "url": "/api/class/WrapLayout#col",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "col: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#col"
- }
- ]
- },
- "39910": {
- "name": "column",
- "type": "Property",
- "url": "/api/class/WrapLayout#column",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "column: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#column"
- }
- ]
- },
- "39911": {
- "name": "rowSpan",
- "type": "Property",
- "url": "/api/class/WrapLayout#rowspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "rowSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#rowspan"
- }
- ]
- },
- "39912": {
- "name": "colSpan",
- "type": "Property",
- "url": "/api/class/WrapLayout#colspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "colSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 220,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#colspan"
- }
- ]
- },
- "39913": {
- "name": "columnSpan",
- "type": "Property",
- "url": "/api/class/WrapLayout#columnspan",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "columnSpan: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 221,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#columnspan"
- }
- ]
- },
- "39914": {
- "name": "order",
- "type": "Property",
- "url": "/api/class/WrapLayout#order",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "order: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 222,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#order"
- }
- ]
- },
- "39915": {
- "name": "flexGrow",
- "type": "Property",
- "url": "/api/class/WrapLayout#flexgrow",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexGrow: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 223,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#flexgrow"
- }
- ]
- },
- "39916": {
- "name": "flexShrink",
- "type": "Property",
- "url": "/api/class/WrapLayout#flexshrink",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexShrink: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 224,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#flexshrink"
- }
- ]
- },
- "39917": {
- "name": "flexWrapBefore",
- "type": "Property",
- "url": "/api/class/WrapLayout#flexwrapbefore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "flexWrapBefore: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 225,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#flexwrapbefore"
- }
- ]
- },
- "39918": {
- "name": "alignSelf",
- "type": "Property",
- "url": "/api/class/WrapLayout#alignself",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "alignSelf: AlignSelf",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 226,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#alignself"
- }
- ]
- },
- "39919": {
- "name": "_oldLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#oldleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 227,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#oldleft"
- }
- ]
- },
- "39920": {
- "name": "_oldTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#oldtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 228,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#oldtop"
- }
- ]
- },
- "39921": {
- "name": "_oldRight",
- "type": "Property",
- "url": "/api/class/WrapLayout#oldright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 229,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#oldright"
- }
- ]
- },
- "39922": {
- "name": "_oldBottom",
- "type": "Property",
- "url": "/api/class/WrapLayout#oldbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_oldBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 230,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#oldbottom"
- }
- ]
- },
- "39923": {
- "name": "_ignoreFlexMinWidthHeightReset",
- "type": "Property",
- "url": "/api/class/WrapLayout#ignoreflexminwidthheightreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_ignoreFlexMinWidthHeightReset: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 231,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#ignoreflexminwidthheightreset"
- }
- ]
- },
- "39924": {
- "name": "effectiveMinWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveminwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 232,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveminwidth"
- }
- ]
- },
- "39925": {
- "name": "effectiveMinHeight",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveminheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMinHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 233,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveminheight"
- }
- ]
- },
- "39926": {
- "name": "effectiveWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivewidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 234,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivewidth"
- }
- ]
- },
- "39927": {
- "name": "effectiveHeight",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveheight",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveHeight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 235,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveheight"
- }
- ]
- },
- "39928": {
- "name": "effectiveMarginTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivemargintop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 236,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivemargintop"
- }
- ]
- },
- "39929": {
- "name": "effectiveMarginRight",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivemarginright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 237,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivemarginright"
- }
- ]
- },
- "39930": {
- "name": "effectiveMarginBottom",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivemarginbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 238,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivemarginbottom"
- }
- ]
- },
- "39931": {
- "name": "effectiveMarginLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivemarginleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveMarginLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 239,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivemarginleft"
- }
- ]
- },
- "39932": {
- "name": "effectivePaddingTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivepaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 240,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivepaddingtop"
- }
- ]
- },
- "39933": {
- "name": "effectivePaddingRight",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivepaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 241,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivepaddingright"
- }
- ]
- },
- "39934": {
- "name": "effectivePaddingBottom",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivepaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 242,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivepaddingbottom"
- }
- ]
- },
- "39935": {
- "name": "effectivePaddingLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivepaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectivePaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 243,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivepaddingleft"
- }
- ]
- },
- "39936": {
- "name": "effectiveBorderTopWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectivebordertopwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderTopWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 244,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectivebordertopwidth"
- }
- ]
- },
- "39937": {
- "name": "effectiveBorderRightWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveborderrightwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderRightWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 245,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveborderrightwidth"
- }
- ]
- },
- "39938": {
- "name": "effectiveBorderBottomWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveborderbottomwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderBottomWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 246,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveborderbottomwidth"
- }
- ]
- },
- "39939": {
- "name": "effectiveBorderLeftWidth",
- "type": "Property",
- "url": "/api/class/WrapLayout#effectiveborderleftwidth",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "effectiveBorderLeftWidth: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 247,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#effectiveborderleftwidth"
- }
- ]
- },
- "39940": {
- "name": "_defaultPaddingTop",
- "type": "Property",
- "url": "/api/class/WrapLayout#defaultpaddingtop",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingTop: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 248,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#defaultpaddingtop"
- }
- ]
- },
- "39941": {
- "name": "_defaultPaddingRight",
- "type": "Property",
- "url": "/api/class/WrapLayout#defaultpaddingright",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingRight: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 249,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#defaultpaddingright"
- }
- ]
- },
- "39942": {
- "name": "_defaultPaddingBottom",
- "type": "Property",
- "url": "/api/class/WrapLayout#defaultpaddingbottom",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingBottom: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 250,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#defaultpaddingbottom"
- }
- ]
- },
- "39943": {
- "name": "_defaultPaddingLeft",
- "type": "Property",
- "url": "/api/class/WrapLayout#defaultpaddingleft",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_defaultPaddingLeft: number",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 251,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#defaultpaddingleft"
- }
- ]
- },
- "39944": {
- "name": "_isPaddingRelative",
- "type": "Property",
- "url": "/api/class/WrapLayout#ispaddingrelative",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "_isPaddingRelative: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 252,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "url": "/api/class/WrapLayout#ispaddingrelative"
- }
- ]
- },
- "39946": {
- "name": "reusable",
- "type": "Property",
- "url": "/api/class/WrapLayout#reusable",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "code": "reusable: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 262,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets or sets if the view is reusable.\nReusable views are not automatically destroyed when removed from the View tree."
- }
- ]
- },
- "url": "/api/class/WrapLayout#reusable"
- }
- ]
- },
- "39947": {
- "name": "parentNode",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#parentnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get parentNode(): ViewBase",
- "url": "/api/class/WrapLayout#parentnode-parentnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 267,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the template parent or the native parent. Sets the template parent."
- }
- ]
- },
- "parameters": [],
- "returns": "ViewBase"
- }
- ]
- },
- "39951": {
- "name": "nativeView",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#nativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeView(): any",
- "url": "/api/class/WrapLayout#nativeview-nativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 269,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "39955": {
- "name": "typeName",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#typename",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get typeName(): string",
- "url": "/api/class/WrapLayout#typename-typename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 274,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the name of the constructor function for this instance. E.g. for a Button class this will return \"Button\"."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39957": {
- "name": "style",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#style",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get style(): Style",
- "url": "/api/class/WrapLayout#style-style-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 278,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the style object associated to this view."
- }
- ]
- },
- "parameters": [],
- "returns": "Style"
- }
- ]
- },
- "39961": {
- "name": "isLoaded",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#isloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get isLoaded(): boolean",
- "url": "/api/class/WrapLayout#isloaded-isloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 282,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "39963": {
- "name": "class",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#class",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get class(): string",
- "url": "/api/class/WrapLayout#class-class-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 283,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "39967": {
- "name": "getViewById",
- "type": "Method",
- "url": "/api/class/WrapLayout#getviewbyid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewById<T>(id: string): T",
- "url": "/api/class/WrapLayout#getviewbyid-getviewbyid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 288,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified id."
- }
- ]
- },
- "parameters": [
- {
- "name": "id",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "39971": {
- "name": "getViewByDomId",
- "type": "Method",
- "url": "/api/class/WrapLayout#getviewbydomid",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getViewByDomId<T>(domId: number): T",
- "url": "/api/class/WrapLayout#getviewbydomid-getviewbydomid-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 292,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns the child view with the specified domId."
- }
- ]
- },
- "parameters": [
- {
- "name": "domId",
- "type": "number",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "39975": {
- "name": "page",
- "type": "Accessor",
- "url": "/api/class/WrapLayout#page",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get page(): Page",
- "url": "/api/class/WrapLayout#page-page-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 296,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets owner page. This is a read-only property."
- }
- ]
- },
- "parameters": [],
- "returns": "Page"
- }
- ]
- },
- "39977": {
- "name": "ensureDomNode",
- "type": "Method",
- "url": "/api/class/WrapLayout#ensuredomnode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "ensureDomNode(): void",
- "url": "/api/class/WrapLayout#ensuredomnode-ensuredomnode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 301,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "Ensures a dom-node for this view."
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39979": {
- "name": "set",
- "type": "Method",
- "url": "/api/class/WrapLayout#set",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "set(name: string, value: any): void",
- "url": "/api/class/WrapLayout#set-set-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 302,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39983": {
- "name": "onUnloaded",
- "type": "Method",
- "url": "/api/class/WrapLayout#onunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onUnloaded(): void",
- "url": "/api/class/WrapLayout#onunloaded-onunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 304,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39985": {
- "name": "_layoutParent",
- "type": "Method",
- "url": "/api/class/WrapLayout#layoutparent",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_layoutParent(): void",
- "url": "/api/class/WrapLayout#layoutparent-layoutparent-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 305,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "39987": {
- "name": "_suspendNativeUpdates",
- "type": "Method",
- "url": "/api/class/WrapLayout#suspendnativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_suspendNativeUpdates(type: SuspendType): void",
- "url": "/api/class/WrapLayout#suspendnativeupdates-suspendnativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 306,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39990": {
- "name": "_resumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/WrapLayout#resumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_resumeNativeUpdates(type: SuspendType): void",
- "url": "/api/class/WrapLayout#resumenativeupdates-resumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 307,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "type",
- "type": "SuspendType",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "39993": {
- "name": "_batchUpdate",
- "type": "Method",
- "url": "/api/class/WrapLayout#batchupdate",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_batchUpdate<T>(callback: () => T): T",
- "url": "/api/class/WrapLayout#batchupdate-batchupdate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 311,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Allow multiple updates to be performed on the instance at once."
- }
- ]
- },
- "parameters": [
- {
- "name": "callback",
- "type": "() => T",
- "flags": {}
- }
- ],
- "returns": "T"
- }
- ]
- },
- "39999": {
- "name": "callLoaded",
- "type": "Method",
- "url": "/api/class/WrapLayout#callloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callLoaded(): void",
- "url": "/api/class/WrapLayout#callloaded-callloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 315,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40001": {
- "name": "callUnloaded",
- "type": "Method",
- "url": "/api/class/WrapLayout#callunloaded",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "callUnloaded(): void",
- "url": "/api/class/WrapLayout#callunloaded-callunloaded-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 316,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40003": {
- "name": "addPseudoClass",
- "type": "Method",
- "url": "/api/class/WrapLayout#addpseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addPseudoClass(name: string): void",
- "url": "/api/class/WrapLayout#addpseudoclass-addpseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 327,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to add a matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40006": {
- "name": "deletePseudoClass",
- "type": "Method",
- "url": "/api/class/WrapLayout#deletepseudoclass",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "deletePseudoClass(name: string): void",
- "url": "/api/class/WrapLayout#deletepseudoclass-deletepseudoclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 333,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@unstable",
- "content": [
- {
- "kind": "text",
- "text": "A widget can call this method to discard matching css pseudo class."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40009": {
- "name": "bind",
- "type": "Method",
- "url": "/api/class/WrapLayout#bind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "bind(options: BindingOptions, source?: Object): void",
- "url": "/api/class/WrapLayout#bind-bind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 338,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "options",
- "type": "BindingOptions",
- "flags": {}
- },
- {
- "name": "source",
- "type": "Object",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40013": {
- "name": "unbind",
- "type": "Method",
- "url": "/api/class/WrapLayout#unbind",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unbind(property: string): void",
- "url": "/api/class/WrapLayout#unbind-unbind-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 339,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "property",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40016": {
- "name": "_addView",
- "type": "Method",
- "url": "/api/class/WrapLayout#addview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addView(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/WrapLayout#addview-addview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 350,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40020": {
- "name": "_addViewCore",
- "type": "Method",
- "url": "/api/class/WrapLayout#addviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewCore(view: ViewBase, atIndex?: number): void",
- "url": "/api/class/WrapLayout#addviewcore-addviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 354,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40024": {
- "name": "loadView",
- "type": "Method",
- "url": "/api/class/WrapLayout#loadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadView(view: ViewBase): void",
- "url": "/api/class/WrapLayout#loadview-loadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 359,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Load view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to load."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40027": {
- "name": "_shouldDelayLayout",
- "type": "Method",
- "url": "/api/class/WrapLayout#shoulddelaylayout",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_shouldDelayLayout(): boolean",
- "url": "/api/class/WrapLayout#shoulddelaylayout-shoulddelaylayout-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 364,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "When returning true the callLoaded method will be run in setTimeout\nMethod is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "40029": {
- "name": "unloadView",
- "type": "Method",
- "url": "/api/class/WrapLayout#unloadview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "unloadView(view: ViewBase): void",
- "url": "/api/class/WrapLayout#unloadview-unloadview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 369,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Unload view."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "to unload."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40032": {
- "name": "_removeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#removeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeView(view: ViewBase): void",
- "url": "/api/class/WrapLayout#removeview-removeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 373,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Core logic for removing a child view from this instance. Used by the framework to handle lifecycle events more centralized. Do not use outside the UI Stack implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40035": {
- "name": "_removeViewCore",
- "type": "Method",
- "url": "/api/class/WrapLayout#removeviewcore",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewCore(view: ViewBase): void",
- "url": "/api/class/WrapLayout#removeviewcore-removeviewcore-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 377,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40038": {
- "name": "createNativeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#createnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createNativeView(): Object",
- "url": "/api/class/WrapLayout#createnativeview-createnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 382,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates a native view.\nReturns either android.view.View or UIView."
- }
- ]
- },
- "parameters": [],
- "returns": "Object"
- }
- ]
- },
- "40040": {
- "name": "disposeNativeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#disposenativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "disposeNativeView(): void",
- "url": "/api/class/WrapLayout#disposenativeview-disposenativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 386,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Clean up references to the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40042": {
- "name": "initNativeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#initnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initNativeView(): void",
- "url": "/api/class/WrapLayout#initnativeview-initnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 390,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Initializes properties/listeners of the native view."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40044": {
- "name": "_setupUI",
- "type": "Method",
- "url": "/api/class/WrapLayout#setupui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_setupUI(context: any, atIndex?: number, parentIsLoaded?: boolean): void",
- "url": "/api/class/WrapLayout#setupui-setupui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 401,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Setups the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "context",
- "type": "any",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "parentIsLoaded",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40049": {
- "name": "setNativeView",
- "type": "Method",
- "url": "/api/class/WrapLayout#setnativeview",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setNativeView(value: any): void",
- "url": "/api/class/WrapLayout#setnativeview-setnativeview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 407,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set the nativeView field performing extra checks and updates to the native properties on the new view.\nUse in cases where the createNativeView is not suitable.\nAs an example use in item controls where the native parent view will create the native views for child items."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40052": {
- "name": "destroyNode",
- "type": "Method",
- "url": "/api/class/WrapLayout#destroynode",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "destroyNode(forceDestroyChildren?: boolean): void",
- "url": "/api/class/WrapLayout#destroynode-destroynode-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 413,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI of a reusable node by making it no longer reusable."
- }
- ],
- "blockTags": [
- {
- "tag": "@see",
- "content": [
- {
- "kind": "text",
- "text": "_tearDownUI"
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "forceDestroyChildren",
- "type": "boolean",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Force destroy the children (even if they are reusable)"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40055": {
- "name": "_tearDownUI",
- "type": "Method",
- "url": "/api/class/WrapLayout#teardownui",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_tearDownUI(force?: boolean): void",
- "url": "/api/class/WrapLayout#teardownui-teardownui-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 418,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Tears down the UI for ViewBase and all its children recursively.\nThis method should *not* be overridden by derived views."
- }
- ]
- },
- "parameters": [
- {
- "name": "force",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40058": {
- "name": "_childIndexToNativeChildIndex",
- "type": "Method",
- "url": "/api/class/WrapLayout#childindextonativechildindex",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_childIndexToNativeChildIndex(index?: number): number",
- "url": "/api/class/WrapLayout#childindextonativechildindex-childindextonativechildindex-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 419,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "index",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "number"
- }
- ]
- },
- "40061": {
- "name": "_addViewToNativeVisualTree",
- "type": "Method",
- "url": "/api/class/WrapLayout#addviewtonativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_addViewToNativeVisualTree(view: ViewBase, atIndex?: number): boolean",
- "url": "/api/class/WrapLayout#addviewtonativevisualtree-addviewtonativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 424,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.\nMethod is intended to be overridden by inheritors and used as \"protected\"."
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- },
- {
- "name": "atIndex",
- "type": "number",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40065": {
- "name": "_removeViewFromNativeVisualTree",
- "type": "Method",
- "url": "/api/class/WrapLayout#removeviewfromnativevisualtree",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_removeViewFromNativeVisualTree(view: ViewBase): void",
- "url": "/api/class/WrapLayout#removeviewfromnativevisualtree-removeviewfromnativevisualtree-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 428,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [
- {
- "name": "view",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40068": {
- "name": "_applyXmlAttribute",
- "type": "Method",
- "url": "/api/class/WrapLayout#applyxmlattribute",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_applyXmlAttribute(attribute: string, value: string): boolean",
- "url": "/api/class/WrapLayout#applyxmlattribute-applyxmlattribute-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 436,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@deprecated",
- "content": [
- {
- "kind": "text",
- "text": "This used to be the way to set attribute values in early {N} versions.\nNow attributes are expected to be set as plain properties on the view instances."
- }
- ]
- }
- ]
- },
- "parameters": [
- {
- "name": "attribute",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40072": {
- "name": "setInlineStyle",
- "type": "Method",
- "url": "/api/class/WrapLayout#setinlinestyle",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInlineStyle(style: string): void",
- "url": "/api/class/WrapLayout#setinlinestyle-setinlinestyle-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 437,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "style",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40075": {
- "name": "_parentChanged",
- "type": "Method",
- "url": "/api/class/WrapLayout#parentchanged",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_parentChanged(oldParent: ViewBase): void",
- "url": "/api/class/WrapLayout#parentchanged-parentchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 438,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "oldParent",
- "type": "ViewBase",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40078": {
- "name": "onResumeNativeUpdates",
- "type": "Method",
- "url": "/api/class/WrapLayout#onresumenativeupdates",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "onResumeNativeUpdates(): void",
- "url": "/api/class/WrapLayout#onresumenativeupdates-onresumenativeupdates-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 439,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40080": {
- "name": "toString",
- "type": "Method",
- "url": "/api/class/WrapLayout#tostring",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "toString(): string",
- "url": "/api/class/WrapLayout#tostring-tostring-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 440,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "40084": {
- "name": "_inheritStyleScope",
- "type": "Method",
- "url": "/api/class/WrapLayout#inheritstylescope",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_inheritStyleScope(styleScope: StyleScope): void",
- "url": "/api/class/WrapLayout#inheritstylescope-inheritstylescope-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 447,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "styleScope",
- "type": "StyleScope",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40087": {
- "name": "_dialogClosed",
- "type": "Method",
- "url": "/api/class/WrapLayout#dialogclosed",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_dialogClosed(): void",
- "url": "/api/class/WrapLayout#dialogclosed-dialogclosed-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 468,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40089": {
- "name": "_onRootViewReset",
- "type": "Method",
- "url": "/api/class/WrapLayout#onrootviewreset",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_onRootViewReset(): void",
- "url": "/api/class/WrapLayout#onrootviewreset-onrootviewreset-1",
- "sources": [
- {
- "fileName": "@nativescript/core/ui/core/view-base/index.d.ts",
- "line": 472,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Method is intended to be overridden by inheritors and used as \"protected\""
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "40092": {
- "name": "get",
- "type": "Method",
- "url": "/api/class/WrapLayout#get",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "get(name: string): any",
- "url": "/api/class/WrapLayout#get-get-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 84,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the value of the specified property."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "any"
- }
- ]
- },
- "40095": {
- "name": "setProperty",
- "type": "Method",
- "url": "/api/class/WrapLayout#setproperty",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setProperty(name: string, value: any): void",
- "url": "/api/class/WrapLayout#setproperty-setproperty-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 92,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates the specified property with the provided value and raises a property change event and a specific change event based on the property name."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40099": {
- "name": "once",
- "type": "Method",
- "url": "/api/class/WrapLayout#once",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "once(event: string, callback: (data: EventData) => void, thisArg?: any): void",
- "url": "/api/class/WrapLayout#once-once-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds one-time listener function for the event named "
- },
- {
- "kind": "code",
- "text": "`event`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "event",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Name of the event to attach to."
- }
- ]
- }
- },
- {
- "name": "callback",
- "type": "(data: EventData) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A function to be called when the specified event is raised."
- }
- ]
- }
- },
- {
- "name": "thisArg",
- "type": "any",
- "flags": {
- "isOptional": true
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "An optional parameter which when set will be used as \"this\" in callback method call."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40107": {
- "name": "notify",
- "type": "Method",
- "url": "/api/class/WrapLayout#notify",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notify<T>(data: T): void",
- "url": "/api/class/WrapLayout#notify-notify-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 140,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notify this Observable instance with some data. This causes all event\nhandlers on the Observable instance to be called, as well as any 'global'\nevent handlers set on the instance's class."
- }
- ]
- },
- "parameters": [
- {
- "name": "data",
- "type": "T",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "an object that satisfies the EventData interface, though with\nan optional 'object' property. If left undefined, the 'object' property\nwill implicitly be set as this Observable instance."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40111": {
- "name": "notifyPropertyChange",
- "type": "Method",
- "url": "/api/class/WrapLayout#notifypropertychange",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyPropertyChange(name: string, value: any, oldValue?: any): void",
- "url": "/api/class/WrapLayout#notifypropertychange-notifypropertychange-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 145,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Notifies all the registered listeners for the property change event."
- }
- ]
- },
- "parameters": [
- {
- "name": "name",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "40116": {
- "name": "hasListeners",
- "type": "Method",
- "url": "/api/class/WrapLayout#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasListeners(eventName: string): boolean",
- "url": "/api/class/WrapLayout#haslisteners-haslisteners-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 150,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Checks whether a listener is registered for the specified event name."
- }
- ]
- },
- "parameters": [
- {
- "name": "eventName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The name of the event to check for."
- }
- ]
- }
- }
- ],
- "returns": "boolean"
- }
- ]
- },
- "40119": {
- "name": "_createPropertyChangeData",
- "type": "Method",
- "url": "/api/class/WrapLayout#createpropertychangedata",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_createPropertyChangeData(propertyName: string, value: any, oldValue?: any): PropertyChangeData",
- "url": "/api/class/WrapLayout#createpropertychangedata-createpropertychangedata-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "This method is intended to be overriden by inheritors to provide additional implementation."
- }
- ]
- },
- "parameters": [
- {
- "name": "propertyName",
- "type": "string",
- "flags": {}
- },
- {
- "name": "value",
- "type": "any",
- "flags": {}
- },
- {
- "name": "oldValue",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "PropertyChangeData"
- }
- ]
- },
- "40124": {
- "name": "_emit",
- "type": "Method",
- "url": "/api/class/WrapLayout#emit",
- "flags": {},
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "_emit(eventNames: string): void",
- "url": "/api/class/WrapLayout#emit-emit-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "LayoutBase"
- },
- "parameters": [
- {
- "name": "eventNames",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/WrapLayout.md b/content/api/class/WrapLayout.md
deleted file mode 100644
index dec78a6e..00000000
--- a/content/api/class/WrapLayout.md
+++ /dev/null
@@ -1,92 +0,0 @@
----
-title: WrapLayout
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'WrapLayout'
-layout: api
-seo:
- description: "WrapLayout position children in rows or columns depending on orientation property\nuntil space is filled and then wraps them on new row or column."
----
-
-
-
-
-
-
-unwrap(value: any): any",
- "url": "/api/class/WrappedValue#unwrap-unwrap-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 58,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets the real value of previously wrappedValue."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Value that should be unwraped. If there is no wrappedValue property of the value object then value will be returned."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1548": {
- "name": "wrap",
- "type": "Method",
- "url": "/api/class/WrappedValue#wrap",
- "flags": {
- "isStatic": true
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "wrap(value: any): any",
- "url": "/api/class/WrappedValue#wrap-wrap-1",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 63,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Returns an instance of WrappedValue. The actual instance is get from a WrappedValues pool."
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Value that should be wrapped."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "1551": {
- "name": "constructor",
- "type": "Constructor",
- "url": "/api/class/WrappedValue#constructor",
- "flags": {},
- "signatures": [
- {
- "type": "ConstructorSignature",
- "code": "new WrappedValue(wrapped: any): WrappedValue",
- "url": "/api/class/WrappedValue#constructor-new-wrappedvalue",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 49,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Creates an instance of WrappedValue object."
- }
- ]
- },
- "parameters": [
- {
- "name": "wrapped",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the real value which should be wrapped."
- }
- ]
- }
- }
- ],
- "returns": "WrappedValue"
- }
- ]
- },
- "1554": {
- "name": "wrapped",
- "type": "Property",
- "url": "/api/class/WrappedValue#wrapped",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Property which holds the real value."
- }
- ]
- },
- "flags": {},
- "signatures": [
- {
- "code": "wrapped: any",
- "sources": [
- {
- "fileName": "@nativescript/core/data/observable/index.d.ts",
- "line": 44,
- "character": 4
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Property which holds the real value."
- }
- ]
- },
- "url": "/api/class/WrappedValue#wrapped"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/WrappedValue.md b/content/api/class/WrappedValue.md
deleted file mode 100644
index 20c54e79..00000000
--- a/content/api/class/WrappedValue.md
+++ /dev/null
@@ -1,94 +0,0 @@
----
-title: WrappedValue
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'WrappedValue'
-layout: api
-seo:
- description: "Helper class that is used to fire property change even when real object is the same.\nBy default property change will not be fired for a same object.\nBy wrapping object into a WrappedValue instance `same object restriction` will be passed."
----
-
-
-
-
-
-
-parse(xmlString: string): void",
- "url": "/api/class/XmlParser#parse-parse-1",
- "sources": [
- {
- "fileName": "@nativescript/core/xml/index.d.ts",
- "line": 111,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Parses the supplied xml string."
- }
- ]
- },
- "parameters": [
- {
- "name": "xmlString",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The string containing the xml to parse."
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/XmlParser.md b/content/api/class/XmlParser.md
deleted file mode 100644
index c669a4dd..00000000
--- a/content/api/class/XmlParser.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-title: XmlParser
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'XmlParser'
-layout: api
-seo:
- description: "A simple non-validating SAX parser based on https://github.com/vflash/easysax version 0.1.14"
----
-
-
-
-
-
-
-off: (eventNames: string, callback?: any, thisArg?: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 96,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#off-1"
- }
- ]
- },
- "3698": {
- "name": "notify",
- "type": "Property",
- "url": "/api/class/iOSApplication#notify-1",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "notify: (eventData: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 100,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#notify-1"
- }
- ]
- },
- "3703": {
- "name": "hasListeners",
- "type": "Property",
- "url": "/api/class/iOSApplication#haslisteners-1",
- "flags": {
- "isStatic": true
- },
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "hasListeners: (eventName: string) => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 104,
- "character": 11
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners-1",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#haslisteners-1"
- }
- ]
- },
- "3709": {
- "name": "rootController",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#rootcontroller",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get rootController(): UIViewController",
- "url": "/api/class/iOSApplication#rootcontroller-rootcontroller-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 148,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The root view controller for the application."
- }
- ]
- },
- "parameters": [],
- "returns": "UIViewController"
- }
- ]
- },
- "3711": {
- "name": "nativeApp",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#nativeapp",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get nativeApp(): UIApplication",
- "url": "/api/class/iOSApplication#nativeapp-nativeapp-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 153,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The [UIApplication](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/index.html)."
- }
- ]
- },
- "parameters": [],
- "returns": "UIApplication"
- }
- ]
- },
- "3713": {
- "name": "window",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#window",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get window(): UIWindow",
- "url": "/api/class/iOSApplication#window-window-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 158,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The key window."
- }
- ]
- },
- "parameters": [],
- "returns": "UIWindow"
- }
- ]
- },
- "3715": {
- "name": "delegate",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#delegate",
- "flags": {},
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get delegate(): any",
- "url": "/api/class/iOSApplication#delegate-delegate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 163,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The [UIApplicationDelegate](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplicationDelegate_Protocol/index.html) class."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "3719": {
- "name": "addNotificationObserver",
- "type": "Method",
- "url": "/api/class/iOSApplication#addnotificationobserver",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addNotificationObserver(\n notificationName: string,\n onReceiveCallback: (notification: NSNotification) => void\n): NotificationObserver",
- "url": "/api/class/iOSApplication#addnotificationobserver-addnotificationobserver-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 176,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Adds an observer to the default notification center for the specified notification.\nFor more information, please visit 'https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSNotificationCenter_Class/#//apple_ref/occ/instm/NSNotificationCenter/addObserver:selector:name:object:'"
- }
- ]
- },
- "parameters": [
- {
- "name": "notificationName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A string containing the name of the notification."
- }
- ]
- }
- },
- {
- "name": "onReceiveCallback",
- "type": "(notification: NSNotification) => void",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A callback function that will be called each time the observer receives a notification."
- }
- ]
- }
- }
- ],
- "returns": "NotificationObserver"
- }
- ]
- },
- "3726": {
- "name": "removeNotificationObserver",
- "type": "Method",
- "url": "/api/class/iOSApplication#removenotificationobserver",
- "flags": {},
- "signatures": [
- {
- "type": "CallSignature",
- "code": "removeNotificationObserver(observer: any, notificationName: string): any",
- "url": "/api/class/iOSApplication#removenotificationobserver-removenotificationobserver-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application.d.ts",
- "line": 185,
- "character": 1
- }
- ],
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Removes the observer for the specified notification from the default notification center.\nFor more information, please visit 'https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSNotificationCenter_Class/#//apple_ref/occ/instm/NSNotificationCenter/addObserver:selector:name:object:'"
- }
- ]
- },
- "parameters": [
- {
- "name": "observer",
- "type": "any",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "The observer that was returned from the addNotificationObserver method."
- }
- ]
- }
- },
- {
- "name": "notificationName",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "A string containing the name of the notification."
- }
- ]
- }
- }
- ],
- "returns": "any"
- }
- ]
- },
- "3730": {
- "name": "launchEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#launchevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "launchEvent",
- "url": "/api/class/ApplicationCommon#launchevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "launchEvent: "launch" = "launch"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 69,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "launchEvent",
- "url": "/api/class/ApplicationCommon#launchevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#launchevent"
- }
- ]
- },
- "3731": {
- "name": "suspendEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#suspendevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "suspendEvent",
- "url": "/api/class/ApplicationCommon#suspendevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "suspendEvent: "suspend" = "suspend"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 70,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "suspendEvent",
- "url": "/api/class/ApplicationCommon#suspendevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#suspendevent"
- }
- ]
- },
- "3732": {
- "name": "displayedEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#displayedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "displayedEvent",
- "url": "/api/class/ApplicationCommon#displayedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "displayedEvent: "displayed" = "displayed"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 71,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "displayedEvent",
- "url": "/api/class/ApplicationCommon#displayedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#displayedevent"
- }
- ]
- },
- "3733": {
- "name": "backgroundEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#backgroundevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "backgroundEvent",
- "url": "/api/class/ApplicationCommon#backgroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "backgroundEvent: "background" = "background"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 72,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "backgroundEvent",
- "url": "/api/class/ApplicationCommon#backgroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#backgroundevent"
- }
- ]
- },
- "3734": {
- "name": "foregroundEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#foregroundevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "foregroundEvent",
- "url": "/api/class/ApplicationCommon#foregroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "foregroundEvent: "foreground" = "foreground"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 73,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "foregroundEvent",
- "url": "/api/class/ApplicationCommon#foregroundevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#foregroundevent"
- }
- ]
- },
- "3735": {
- "name": "resumeEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#resumeevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "resumeEvent",
- "url": "/api/class/ApplicationCommon#resumeevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "resumeEvent: "resume" = "resume"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 74,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "resumeEvent",
- "url": "/api/class/ApplicationCommon#resumeevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#resumeevent"
- }
- ]
- },
- "3736": {
- "name": "exitEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#exitevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "exitEvent",
- "url": "/api/class/ApplicationCommon#exitevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "exitEvent: "exit" = "exit"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 75,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "exitEvent",
- "url": "/api/class/ApplicationCommon#exitevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#exitevent"
- }
- ]
- },
- "3737": {
- "name": "lowMemoryEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#lowmemoryevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "lowMemoryEvent",
- "url": "/api/class/ApplicationCommon#lowmemoryevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "lowMemoryEvent: "lowMemory" = "lowMemory"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 76,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "lowMemoryEvent",
- "url": "/api/class/ApplicationCommon#lowmemoryevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#lowmemoryevent"
- }
- ]
- },
- "3738": {
- "name": "uncaughtErrorEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#uncaughterrorevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "uncaughtErrorEvent",
- "url": "/api/class/ApplicationCommon#uncaughterrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "uncaughtErrorEvent: "uncaughtError" = "uncaughtError"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 77,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "uncaughtErrorEvent",
- "url": "/api/class/ApplicationCommon#uncaughterrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#uncaughterrorevent"
- }
- ]
- },
- "3739": {
- "name": "discardedErrorEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#discardederrorevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "discardedErrorEvent",
- "url": "/api/class/ApplicationCommon#discardederrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "discardedErrorEvent: "discardedError" = "discardedError"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 78,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "discardedErrorEvent",
- "url": "/api/class/ApplicationCommon#discardederrorevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#discardederrorevent"
- }
- ]
- },
- "3740": {
- "name": "orientationChangedEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#orientationchangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "orientationChangedEvent",
- "url": "/api/class/ApplicationCommon#orientationchangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "orientationChangedEvent: "orientationChanged" = "orientationChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 79,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "orientationChangedEvent",
- "url": "/api/class/ApplicationCommon#orientationchangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#orientationchangedevent"
- }
- ]
- },
- "3741": {
- "name": "systemAppearanceChangedEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#systemappearancechangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "systemAppearanceChangedEvent",
- "url": "/api/class/ApplicationCommon#systemappearancechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "systemAppearanceChangedEvent: "systemAppearanceChanged" = "systemAppearanceChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 80,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "systemAppearanceChangedEvent",
- "url": "/api/class/ApplicationCommon#systemappearancechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#systemappearancechangedevent"
- }
- ]
- },
- "3742": {
- "name": "fontScaleChangedEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#fontscalechangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "fontScaleChangedEvent",
- "url": "/api/class/ApplicationCommon#fontscalechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "fontScaleChangedEvent: "fontScaleChanged" = "fontScaleChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 81,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "fontScaleChangedEvent",
- "url": "/api/class/ApplicationCommon#fontscalechangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#fontscalechangedevent"
- }
- ]
- },
- "3743": {
- "name": "livesyncEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#livesyncevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "livesyncEvent",
- "url": "/api/class/ApplicationCommon#livesyncevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "livesyncEvent: "livesync" = "livesync"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 82,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "livesyncEvent",
- "url": "/api/class/ApplicationCommon#livesyncevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#livesyncevent"
- }
- ]
- },
- "3744": {
- "name": "loadAppCssEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#loadappcssevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "loadAppCssEvent",
- "url": "/api/class/ApplicationCommon#loadappcssevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "loadAppCssEvent: "loadAppCss" = "loadAppCss"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 83,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "loadAppCssEvent",
- "url": "/api/class/ApplicationCommon#loadappcssevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#loadappcssevent"
- }
- ]
- },
- "3745": {
- "name": "cssChangedEvent",
- "type": "Property",
- "url": "/api/class/iOSApplication#csschangedevent",
- "flags": {
- "isReadonly": true
- },
- "inheritedFrom": {
- "name": "cssChangedEvent",
- "url": "/api/class/ApplicationCommon#csschangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "cssChangedEvent: "cssChanged" = "cssChanged"",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 84,
- "character": 13
- }
- ],
- "inheritedFrom": {
- "name": "cssChangedEvent",
- "url": "/api/class/ApplicationCommon#csschangedevent",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#csschangedevent"
- }
- ]
- },
- "3746": {
- "name": "on",
- "type": "Property",
- "url": "/api/class/iOSApplication#on",
- "flags": {},
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/ApplicationCommon#on",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "on: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 105,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "on",
- "url": "/api/class/ApplicationCommon#on",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#on"
- }
- ]
- },
- "3853": {
- "name": "once",
- "type": "Property",
- "url": "/api/class/iOSApplication#once",
- "flags": {},
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/ApplicationCommon#once",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "once: {\n(eventNames: string, callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"livesync\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"cssChanged\", callback: (args: CssChangedEventData) => void, thisArg?: any) => void;\n(event: \"launch\", callback: (args: LaunchEventData) => void, thisArg?: any) => void;\n(event: \"displayed\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"suspend\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"resume\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"exit\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"lowMemory\", callback: (args: ApplicationEventData) => void, thisArg?: any) => void;\n(event: \"uncaughtError\", callback: (args: UnhandledErrorEventData) => void, thisArg?: any) => void;\n(event: \"discardedError\", callback: (args: DiscardedErrorEventData) => void, thisArg?: any) => void;\n(event: \"orientationChanged\", callback: (args: OrientationChangedEventData) => void, thisArg?: any) => void;\n(event: \"systemAppearanceChanged\", callback: (args: SystemAppearanceChangedEventData) => void, thisArg?: any) => void;\n}",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 106,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "once",
- "url": "/api/class/ApplicationCommon#once",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#once"
- }
- ]
- },
- "3960": {
- "name": "off",
- "type": "Property",
- "url": "/api/class/iOSApplication#off",
- "flags": {},
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "off: (eventNames: string, callback?: any, thisArg?: any) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 107,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "off",
- "url": "/api/class/ApplicationCommon#off",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#off"
- }
- ]
- },
- "3966": {
- "name": "notify",
- "type": "Property",
- "url": "/api/class/iOSApplication#notify",
- "flags": {},
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "notify: (eventData: T) => void",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 108,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notify",
- "url": "/api/class/ApplicationCommon#notify",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#notify"
- }
- ]
- },
- "3971": {
- "name": "hasListeners",
- "type": "Property",
- "url": "/api/class/iOSApplication#haslisteners",
- "flags": {},
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "hasListeners: (eventName: string) => boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 109,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasListeners",
- "url": "/api/class/ApplicationCommon#haslisteners",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#haslisteners"
- }
- ]
- },
- "3979": {
- "name": "applyCssClass",
- "type": "Method",
- "url": "/api/class/iOSApplication#applycssclass",
- "flags": {},
- "inheritedFrom": {
- "name": "applyCssClass",
- "url": "/api/class/ApplicationCommon#applycssclass",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "applyCssClass(rootView: View, cssClasses: string[], newCssClass: string): void",
- "url": "/api/class/iOSApplication#applycssclass-applycssclass-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 125,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "applyCssClass",
- "url": "/api/class/ApplicationCommon#applycssclass",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Applies the the "
- },
- {
- "kind": "code",
- "text": "`newCssClass`"
- },
- {
- "kind": "text",
- "text": " to the "
- },
- {
- "kind": "code",
- "text": "`rootView`"
- },
- {
- "kind": "text",
- "text": " and removes all other css classes from "
- },
- {
- "kind": "code",
- "text": "`cssClasses`"
- },
- {
- "kind": "text",
- "text": "\npreviously applied to the "
- },
- {
- "kind": "code",
- "text": "`rootView`"
- },
- {
- "kind": "text",
- "text": "."
- }
- ]
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "cssClasses",
- "type": "string[]",
- "flags": {},
- "comment": {
- "summary": []
- }
- },
- {
- "name": "newCssClass",
- "type": "string",
- "flags": {},
- "comment": {
- "summary": []
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "3984": {
- "name": "setMaxRefreshRate",
- "type": "Method",
- "url": "/api/class/iOSApplication#setmaxrefreshrate",
- "flags": {},
- "inheritedFrom": {
- "name": "setMaxRefreshRate",
- "url": "/api/class/ApplicationCommon#setmaxrefreshrate",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setMaxRefreshRate(options?: { max?: number; min?: number }): void",
- "url": "/api/class/iOSApplication#setmaxrefreshrate-setmaxrefreshrate-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 143,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setMaxRefreshRate",
- "url": "/api/class/ApplicationCommon#setmaxrefreshrate",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "iOS Only\nDynamically change the preferred frame rate\nFor devices (iOS 15+) which support min/max/preferred frame rate you can specify ranges\nFor devices (iOS < 15), you can specify the max frame rate\nsee: https://developer.apple.com/documentation/quartzcore/optimizing_promotion_refresh_rates_for_iphone_13_pro_and_ipad_pro\nTo use, ensure your Info.plist has:\n"
- },
- {
- "kind": "code",
- "text": "```xml\n mainEntry: NavigationEntry",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 148,
- "character": 14
- }
- ],
- "inheritedFrom": {
- "name": "mainEntry",
- "url": "/api/class/ApplicationCommon#mainentry",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#mainentry"
- }
- ]
- },
- "3992": {
- "name": "getMainEntry",
- "type": "Method",
- "url": "/api/class/iOSApplication#getmainentry",
- "flags": {},
- "inheritedFrom": {
- "name": "getMainEntry",
- "url": "/api/class/ApplicationCommon#getmainentry",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getMainEntry(): NavigationEntry",
- "url": "/api/class/iOSApplication#getmainentry-getmainentry-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 152,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getMainEntry",
- "url": "/api/class/ApplicationCommon#getmainentry",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [],
- "blockTags": [
- {
- "tag": "@returns",
- "content": [
- {
- "kind": "text",
- "text": "The main entry of the application"
- }
- ]
- }
- ]
- },
- "parameters": [],
- "returns": "NavigationEntry"
- }
- ]
- },
- "3994": {
- "name": "notifyLaunch",
- "type": "Method",
- "url": "/api/class/iOSApplication#notifylaunch",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "notifyLaunch",
- "url": "/api/class/ApplicationCommon#notifylaunch",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "notifyLaunch(additionalLanchEventData?: any): View",
- "url": "/api/class/iOSApplication#notifylaunch-notifylaunch-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 153,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "notifyLaunch",
- "url": "/api/class/ApplicationCommon#notifylaunch",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "additionalLanchEventData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "3997": {
- "name": "createRootView",
- "type": "Method",
- "url": "/api/class/iOSApplication#createrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "createRootView",
- "url": "/api/class/ApplicationCommon#createrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "createRootView(view?: View, fireLaunchEvent?: boolean, additionalLanchEventData?: any): View",
- "url": "/api/class/iOSApplication#createrootview-createrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 154,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "createRootView",
- "url": "/api/class/ApplicationCommon#createrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "view",
- "type": "View",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "fireLaunchEvent",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- },
- {
- "name": "additionalLanchEventData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "View"
- }
- ]
- },
- "4002": {
- "name": "getRootView",
- "type": "Method",
- "url": "/api/class/iOSApplication#getrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "getRootView",
- "url": "/api/class/ApplicationCommon#getrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getRootView(): View",
- "url": "/api/class/iOSApplication#getrootview-getrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 155,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getRootView",
- "url": "/api/class/ApplicationCommon#getrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "View"
- }
- ]
- },
- "4004": {
- "name": "resetRootView",
- "type": "Method",
- "url": "/api/class/iOSApplication#resetrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "resetRootView",
- "url": "/api/class/ApplicationCommon#resetrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "resetRootView(entry?: string | NavigationEntry): void",
- "url": "/api/class/iOSApplication#resetrootview-resetrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 156,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "resetRootView",
- "url": "/api/class/ApplicationCommon#resetrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4007": {
- "name": "initRootView",
- "type": "Method",
- "url": "/api/class/iOSApplication#initrootview",
- "flags": {},
- "inheritedFrom": {
- "name": "initRootView",
- "url": "/api/class/ApplicationCommon#initrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "initRootView(rootView: View): void",
- "url": "/api/class/iOSApplication#initrootview-initrootview-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 157,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "initRootView",
- "url": "/api/class/ApplicationCommon#initrootview",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4010": {
- "name": "getResources",
- "type": "Method",
- "url": "/api/class/iOSApplication#getresources",
- "flags": {},
- "inheritedFrom": {
- "name": "getResources",
- "url": "/api/class/ApplicationCommon#getresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getResources(): any",
- "url": "/api/class/iOSApplication#getresources-getresources-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 161,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getResources",
- "url": "/api/class/ApplicationCommon#getresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Get application level static resources."
- }
- ]
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "4012": {
- "name": "setResources",
- "type": "Method",
- "url": "/api/class/iOSApplication#setresources",
- "flags": {},
- "inheritedFrom": {
- "name": "setResources",
- "url": "/api/class/ApplicationCommon#setresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setResources(res: any): void",
- "url": "/api/class/iOSApplication#setresources-setresources-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 165,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setResources",
- "url": "/api/class/ApplicationCommon#setresources",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Set application level static resources."
- }
- ]
- },
- "parameters": [
- {
- "name": "res",
- "type": "any",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4015": {
- "name": "setCssFileName",
- "type": "Method",
- "url": "/api/class/iOSApplication#setcssfilename",
- "flags": {},
- "inheritedFrom": {
- "name": "setCssFileName",
- "url": "/api/class/ApplicationCommon#setcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setCssFileName(cssFileName: string): void",
- "url": "/api/class/iOSApplication#setcssfilename-setcssfilename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 170,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setCssFileName",
- "url": "/api/class/ApplicationCommon#setcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Sets css file name for the application."
- }
- ]
- },
- "parameters": [
- {
- "name": "cssFileName",
- "type": "string",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4018": {
- "name": "getCssFileName",
- "type": "Method",
- "url": "/api/class/iOSApplication#getcssfilename",
- "flags": {},
- "inheritedFrom": {
- "name": "getCssFileName",
- "url": "/api/class/ApplicationCommon#getcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getCssFileName(): string",
- "url": "/api/class/iOSApplication#getcssfilename-getcssfilename-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 174,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getCssFileName",
- "url": "/api/class/ApplicationCommon#getcssfilename",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Gets css file name for the application."
- }
- ]
- },
- "parameters": [],
- "returns": "string"
- }
- ]
- },
- "4020": {
- "name": "loadAppCss",
- "type": "Method",
- "url": "/api/class/iOSApplication#loadappcss",
- "flags": {},
- "inheritedFrom": {
- "name": "loadAppCss",
- "url": "/api/class/ApplicationCommon#loadappcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "loadAppCss(): void",
- "url": "/api/class/iOSApplication#loadappcss-loadappcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 181,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "loadAppCss",
- "url": "/api/class/ApplicationCommon#loadappcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Loads immediately the app.css.\nBy default the app.css file is loaded shortly after \"loaded\".\nFor the Android snapshot the CSS can be parsed during the snapshot generation,\nas the CSS does not depend on runtime APIs, and loadAppCss will be called explicitly."
- }
- ]
- },
- "parameters": [],
- "returns": "void"
- }
- ]
- },
- "4022": {
- "name": "addCss",
- "type": "Method",
- "url": "/api/class/iOSApplication#addcss",
- "flags": {},
- "inheritedFrom": {
- "name": "addCss",
- "url": "/api/class/ApplicationCommon#addcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "addCss(cssText: string, attributeScoped?: boolean): void",
- "url": "/api/class/iOSApplication#addcss-addcss-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 182,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "addCss",
- "url": "/api/class/ApplicationCommon#addcss",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "cssText",
- "type": "string",
- "flags": {}
- },
- {
- "name": "attributeScoped",
- "type": "boolean",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4026": {
- "name": "run",
- "type": "Method",
- "url": "/api/class/iOSApplication#run",
- "flags": {},
- "inheritedFrom": {
- "name": "run",
- "url": "/api/class/ApplicationCommon#run",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "run(entry?: string | NavigationEntry): void",
- "url": "/api/class/iOSApplication#run-run-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 183,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "run",
- "url": "/api/class/ApplicationCommon#run",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "entry",
- "type": "string | NavigationEntry",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4029": {
- "name": "getOrientation",
- "type": "Method",
- "url": "/api/class/iOSApplication#getorientation",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "getOrientation",
- "url": "/api/class/ApplicationCommon#getorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getOrientation(): "portrait" | "landscape" | "unknown"",
- "url": "/api/class/iOSApplication#getorientation-getorientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 185,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getOrientation",
- "url": "/api/class/ApplicationCommon#getorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"portrait\" | \"landscape\" | \"unknown\""
- }
- ]
- },
- "4031": {
- "name": "setOrientation",
- "type": "Method",
- "url": "/api/class/iOSApplication#setorientation",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "setOrientation",
- "url": "/api/class/ApplicationCommon#setorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setOrientation(value: "portrait" | "landscape" | "unknown"): void",
- "url": "/api/class/iOSApplication#setorientation-setorientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 186,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setOrientation",
- "url": "/api/class/ApplicationCommon#setorientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "\"portrait\" | \"landscape\" | \"unknown\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4034": {
- "name": "orientation",
- "type": "Method",
- "url": "/api/class/iOSApplication#orientation",
- "flags": {},
- "inheritedFrom": {
- "name": "orientation",
- "url": "/api/class/ApplicationCommon#orientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "orientation(): "portrait" | "landscape" | "unknown"",
- "url": "/api/class/iOSApplication#orientation-orientation-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 187,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "orientation",
- "url": "/api/class/ApplicationCommon#orientation",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"portrait\" | \"landscape\" | \"unknown\""
- }
- ]
- },
- "4036": {
- "name": "orientationChanged",
- "type": "Method",
- "url": "/api/class/iOSApplication#orientationchanged",
- "flags": {},
- "inheritedFrom": {
- "name": "orientationChanged",
- "url": "/api/class/ApplicationCommon#orientationchanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "orientationChanged(rootView: View, newOrientation: \"portrait\" | \"landscape\" | \"unknown\"): void",
- "url": "/api/class/iOSApplication#orientationchanged-orientationchanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 188,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "orientationChanged",
- "url": "/api/class/ApplicationCommon#orientationchanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {}
- },
- {
- "name": "newOrientation",
- "type": "\"portrait\" | \"landscape\" | \"unknown\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4040": {
- "name": "getNativeApplication",
- "type": "Method",
- "url": "/api/class/iOSApplication#getnativeapplication",
- "flags": {},
- "inheritedFrom": {
- "name": "getNativeApplication",
- "url": "/api/class/ApplicationCommon#getnativeapplication",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getNativeApplication(): any",
- "url": "/api/class/iOSApplication#getnativeapplication-getnativeapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 189,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getNativeApplication",
- "url": "/api/class/ApplicationCommon#getnativeapplication",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "any"
- }
- ]
- },
- "4042": {
- "name": "hasLaunched",
- "type": "Method",
- "url": "/api/class/iOSApplication#haslaunched",
- "flags": {},
- "inheritedFrom": {
- "name": "hasLaunched",
- "url": "/api/class/ApplicationCommon#haslaunched",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "hasLaunched(): boolean",
- "url": "/api/class/iOSApplication#haslaunched-haslaunched-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 190,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "hasLaunched",
- "url": "/api/class/ApplicationCommon#haslaunched",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "4044": {
- "name": "getSystemAppearance",
- "type": "Method",
- "url": "/api/class/iOSApplication#getsystemappearance",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "getSystemAppearance",
- "url": "/api/class/ApplicationCommon#getsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "getSystemAppearance(): "dark" | "light"",
- "url": "/api/class/iOSApplication#getsystemappearance-getsystemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 192,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "getSystemAppearance",
- "url": "/api/class/ApplicationCommon#getsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "4046": {
- "name": "setSystemAppearance",
- "type": "Method",
- "url": "/api/class/iOSApplication#setsystemappearance",
- "flags": {
- "isProtected": true
- },
- "inheritedFrom": {
- "name": "setSystemAppearance",
- "url": "/api/class/ApplicationCommon#setsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSystemAppearance(value: "dark" | "light"): void",
- "url": "/api/class/iOSApplication#setsystemappearance-setsystemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 193,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setSystemAppearance",
- "url": "/api/class/ApplicationCommon#setsystemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "\"dark\" | \"light\"",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4049": {
- "name": "systemAppearance",
- "type": "Method",
- "url": "/api/class/iOSApplication#systemappearance",
- "flags": {},
- "inheritedFrom": {
- "name": "systemAppearance",
- "url": "/api/class/ApplicationCommon#systemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "systemAppearance(): "dark" | "light"",
- "url": "/api/class/iOSApplication#systemappearance-systemappearance-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 194,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "systemAppearance",
- "url": "/api/class/ApplicationCommon#systemappearance",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [],
- "returns": "\"dark\" | \"light\""
- }
- ]
- },
- "4051": {
- "name": "autoSystemAppearanceChanged",
- "type": "Property",
- "url": "/api/class/iOSApplication#autosystemappearancechanged",
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Boolean to enable/disable systemAppearanceChanged"
- }
- ]
- },
- "flags": {},
- "inheritedFrom": {
- "name": "autoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#autosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "autoSystemAppearanceChanged: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 198,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "autoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#autosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Boolean to enable/disable systemAppearanceChanged"
- }
- ]
- },
- "url": "/api/class/iOSApplication#autosystemappearancechanged"
- }
- ]
- },
- "4052": {
- "name": "setAutoSystemAppearanceChanged",
- "type": "Method",
- "url": "/api/class/iOSApplication#setautosystemappearancechanged",
- "flags": {},
- "inheritedFrom": {
- "name": "setAutoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#setautosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setAutoSystemAppearanceChanged(value: boolean): void",
- "url": "/api/class/iOSApplication#setautosystemappearancechanged-setautosystemappearancechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 202,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setAutoSystemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#setautosystemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "enable/disable systemAppearanceChanged"
- }
- ]
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4055": {
- "name": "systemAppearanceChanged",
- "type": "Method",
- "url": "/api/class/iOSApplication#systemappearancechanged",
- "flags": {},
- "inheritedFrom": {
- "name": "systemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#systemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "systemAppearanceChanged(rootView: View, newSystemAppearance: \"dark\" | \"light\"): void",
- "url": "/api/class/iOSApplication#systemappearancechanged-systemappearancechanged-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 208,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "systemAppearanceChanged",
- "url": "/api/class/ApplicationCommon#systemappearancechanged",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "Updates root view classes including those of modals"
- }
- ]
- },
- "parameters": [
- {
- "name": "rootView",
- "type": "View",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the root view"
- }
- ]
- }
- },
- {
- "name": "newSystemAppearance",
- "type": "\"dark\" | \"light\"",
- "flags": {},
- "comment": {
- "summary": [
- {
- "kind": "text",
- "text": "the new appearance change"
- }
- ]
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4059": {
- "name": "inBackground",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#inbackground",
- "flags": {},
- "inheritedFrom": {
- "name": "inBackground",
- "url": "/api/class/ApplicationCommon#inbackground",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get inBackground(): boolean",
- "url": "/api/class/iOSApplication#inbackground-inbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 210,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "4061": {
- "name": "setInBackground",
- "type": "Method",
- "url": "/api/class/iOSApplication#setinbackground",
- "flags": {},
- "inheritedFrom": {
- "name": "setInBackground",
- "url": "/api/class/ApplicationCommon#setinbackground",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setInBackground(value: boolean, additonalData?: any): void",
- "url": "/api/class/iOSApplication#setinbackground-setinbackground-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 211,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setInBackground",
- "url": "/api/class/ApplicationCommon#setinbackground",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "additonalData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4065": {
- "name": "suspended",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#suspended",
- "flags": {},
- "inheritedFrom": {
- "name": "suspended",
- "url": "/api/class/ApplicationCommon#suspended",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get suspended(): boolean",
- "url": "/api/class/iOSApplication#suspended-suspended-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 213,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "boolean"
- }
- ]
- },
- "4067": {
- "name": "setSuspended",
- "type": "Method",
- "url": "/api/class/iOSApplication#setsuspended",
- "flags": {},
- "inheritedFrom": {
- "name": "setSuspended",
- "url": "/api/class/ApplicationCommon#setsuspended",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "CallSignature",
- "code": "setSuspended(value: boolean, additonalData?: any): void",
- "url": "/api/class/iOSApplication#setsuspended-setsuspended-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 214,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "setSuspended",
- "url": "/api/class/ApplicationCommon#setsuspended",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "parameters": [
- {
- "name": "value",
- "type": "boolean",
- "flags": {}
- },
- {
- "name": "additonalData",
- "type": "any",
- "flags": {
- "isOptional": true
- }
- }
- ],
- "returns": "void"
- }
- ]
- },
- "4071": {
- "name": "started",
- "type": "Property",
- "url": "/api/class/iOSApplication#started",
- "flags": {},
- "inheritedFrom": {
- "name": "started",
- "url": "/api/class/ApplicationCommon#started",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "code": "started: boolean",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 215,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "name": "started",
- "url": "/api/class/ApplicationCommon#started",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "url": "/api/class/iOSApplication#started"
- }
- ]
- },
- "4072": {
- "name": "android",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#android",
- "flags": {},
- "inheritedFrom": {
- "name": "android",
- "url": "/api/class/ApplicationCommon#android",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get android(): AndroidApplication",
- "url": "/api/class/iOSApplication#android-android-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 216,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "AndroidApplication"
- }
- ]
- },
- "4074": {
- "name": "ios",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#ios",
- "flags": {},
- "inheritedFrom": {
- "name": "ios",
- "url": "/api/class/ApplicationCommon#ios",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get ios(): iOSApplication",
- "url": "/api/class/iOSApplication#ios-ios-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 217,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "iOSApplication"
- }
- ]
- },
- "4076": {
- "name": "AndroidApplication",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#androidapplication",
- "flags": {},
- "inheritedFrom": {
- "name": "AndroidApplication",
- "url": "/api/class/ApplicationCommon#androidapplication",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get AndroidApplication(): AndroidApplication",
- "url": "/api/class/iOSApplication#androidapplication-androidapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 218,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "AndroidApplication"
- }
- ]
- },
- "4078": {
- "name": "iOSApplication",
- "type": "Accessor",
- "url": "/api/class/iOSApplication#iosapplication",
- "flags": {},
- "inheritedFrom": {
- "name": "iOSApplication",
- "url": "/api/class/ApplicationCommon#iosapplication",
- "fromName": "ApplicationCommon",
- "fromUrl": "/api/class/ApplicationCommon"
- },
- "signatures": [
- {
- "type": "GetSignature",
- "code": "get iOSApplication(): iOSApplication",
- "url": "/api/class/iOSApplication#iosapplication-iosapplication-1",
- "sources": [
- {
- "fileName": "@nativescript/core/application/application-common.d.ts",
- "line": 219,
- "character": 4
- }
- ],
- "inheritedFrom": {
- "fromName": "ApplicationCommon"
- },
- "parameters": [],
- "returns": "iOSApplication"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/content/api/class/iOSApplication.md b/content/api/class/iOSApplication.md
deleted file mode 100644
index df3a16c1..00000000
--- a/content/api/class/iOSApplication.md
+++ /dev/null
@@ -1,118 +0,0 @@
----
-title: iOSApplication
-category: Classes
-titleTemplate: 'API - NativeScript'
-breadcrumbs:
- - name: 'API Index'
- href: '/api/'
- - name: 'Classes'
- href: '/api/#summary-Classes'
- - name: 'iOSApplication'
-layout: api
-seo:
- description: iOSApplication
----
-
-
-
-
-
-
-